type net/http.RoundTripper

19 uses

	net/http (current package)
		client.go#L62: 	Transport RoundTripper
		client.go#L117: type RoundTripper interface {
		client.go#L200: func (c *Client) transport() RoundTripper {
		client.go#L212: func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L321: func knownRoundTripperImpl(rt RoundTripper, req *Request) bool {
		client.go#L352: func setRequestCancel(req *Request, rt RoundTripper, deadline time.Time) (stopTimer func(), didTimeout func() bool) {
		filetransport.go#L30: func NewFileTransport(fs FileSystem) RoundTripper {
		h2_bundle.go#L7336: 	upgradeFn := func(authority string, c *tls.Conn) RoundTripper {
		h2_bundle.go#L7351: 		t1.TLSNextProto = map[string]func(string, *tls.Conn) RoundTripper{
		transport.go#L43: var DefaultTransport RoundTripper = &Transport{
		transport.go#L244: 	TLSNextProto map[string]func(authority string, c *tls.Conn) RoundTripper
		transport.go#L342: 		npm := map[string]func(authority string, c *tls.Conn) RoundTripper{}
		transport.go#L381: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L504: func (t *Transport) alternateRoundTripper(req *Request) RoundTripper {
		transport.go#L508: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L760: func (t *Transport) RegisterProtocol(scheme string, rt RoundTripper) {
		transport.go#L763: 	oldMap, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L767: 	newMap := make(map[string]RoundTripper)
		transport.go#L1901: 	alt RoundTripper