| 68 | } |
| 69 | |
| 70 | type httpService struct { |
| 71 | url *url.URL |
| 72 | hostHeader string |
| 73 | transport *http.Transport |
| 74 | matchSNIToHost bool |
| 75 | } |
| 76 | |
| 77 | func (o *httpService) start(log *zerolog.Logger, _ <-chan struct{}, cfg OriginRequestConfig) error { |
| 78 | transport, err := newHTTPTransport(o, cfg, log) |
nothing calls this directly
no outgoing calls
no test coverage detected