type net/http.RoundTripper

19 uses

	net/http (current package)
		client.go#L61: 	Transport RoundTripper
		client.go#L116: type RoundTripper interface {
		client.go#L194: func (c *Client) transport() RoundTripper {
		client.go#L203: func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
		client.go#L312: func knownRoundTripperImpl(rt RoundTripper, req *Request) bool {
		client.go#L343: 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#L6692: 	upgradeFn := func(authority string, c *tls.Conn) RoundTripper {
		h2_bundle.go#L6707: 		t1.TLSNextProto = map[string]func(string, *tls.Conn) RoundTripper{
		transport.go#L42: var DefaultTransport RoundTripper = &Transport{
		transport.go#L238: 	TLSNextProto map[string]func(authority string, c *tls.Conn) RoundTripper
		transport.go#L335: 		npm := map[string]func(authority string, c *tls.Conn) RoundTripper{}
		transport.go#L371: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L493: func (t *Transport) alternateRoundTripper(req *Request) RoundTripper {
		transport.go#L497: 	altProto, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L739: func (t *Transport) RegisterProtocol(scheme string, rt RoundTripper) {
		transport.go#L742: 	oldMap, _ := t.altProto.Load().(map[string]RoundTripper)
		transport.go#L746: 	newMap := make(map[string]RoundTripper)
		transport.go#L1869: 	alt RoundTripper