Searched defs:http2clientConnPool (Results 1 – 2 of 2) sorted by relevance
40 http2clientConnPool http2clientConnPool member43 type http2clientConnPool struct { struct44 mu *sync.Mutex45 conns map[string][]*http2clientConn
767 type http2clientConnPool struct { struct768 t *http2Transport member770 mu sync.Mutex // TODO: maybe switch to RWMutex773 conns map[string][]*http2ClientConn // key is host:port774 dialing map[string]*http2dialCall // currently in-flight dials775 keys map[*http2ClientConn][]string776 addConnCalls map[string]*http2addConnCall // in-flight addConnIfNeeded calls779 func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {788 …ientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {849 func (p *http2clientConnPool) getStartDialLocked(ctx context.Context, addr string) *http2dialCall {[all …]