Home | History | Annotate | Download | only in http

Lines Matching refs:Transport

8 // The low-level implementation is in transport.go.
30 // The Client's Transport typically has internal state (cached TCP
34 // A Client is higher-level than a RoundTripper (such as Transport)
57 // Transport specifies the mechanism by which individual
60 Transport RoundTripper
97 // The Client cancels requests to the underlying Transport
103 // CancelRequest method on Transport if found. New
173 resp, didTimeout, err = send(req, c.transport(), deadline)
192 func (c *Client) transport() RoundTripper {
193 if c.Transport != nil {
194 return c.Transport
206 return nil, alwaysFalse, errors.New("http: no Client.Transport or DefaultTransport")
230 // Transport that this has been initialized, though.
280 // First was Transport.CancelRequest. (deprecated)
304 case *Transport, *http2Transport:
468 // closed, the Client's underlying RoundTripper (typically Transport)
473 // Transport, even on errors.
574 // fails, the Transport won't reuse it anyway.