unixSocketPath is an OriginService representing a unix socket (which accepts HTTP or HTTPS)
| 41 | |
| 42 | // unixSocketPath is an OriginService representing a unix socket (which accepts HTTP or HTTPS) |
| 43 | type unixSocketPath struct { |
| 44 | path string |
| 45 | scheme string |
| 46 | transport *http.Transport |
| 47 | } |
| 48 | |
| 49 | func (o *unixSocketPath) String() string { |
| 50 | scheme := "" |
nothing calls this directly
no outgoing calls
no test coverage detected