type net/http.Protocols

18 uses

	net/http (current package)
		http.go#L30: type Protocols struct {
		http.go#L41: func (p Protocols) HTTP1() bool { return p.bits&protoHTTP1 != 0 }
		http.go#L44: func (p *Protocols) SetHTTP1(ok bool) { p.setBit(protoHTTP1, ok) }
		http.go#L47: func (p Protocols) HTTP2() bool { return p.bits&protoHTTP2 != 0 }
		http.go#L50: func (p *Protocols) SetHTTP2(ok bool) { p.setBit(protoHTTP2, ok) }
		http.go#L53: func (p Protocols) UnencryptedHTTP2() bool { return p.bits&protoUnencryptedHTTP2 != 0 }
		http.go#L56: func (p *Protocols) SetUnencryptedHTTP2(ok bool) { p.setBit(protoUnencryptedHTTP2, ok) }
		http.go#L58: func (p *Protocols) setBit(bit uint8, ok bool) {
		http.go#L66: func (p Protocols) String() string {
		server.go#L3075: 	Protocols *Protocols
		server.go#L3506: func (s *Server) protocols() Protocols {
		server.go#L3523: 	var p Protocols
		server.go#L3533: func adjustNextProtos(nextProtos []string, protos Protocols) []string {
		server.go#L3540: 	var have Protocols
		transport.go#L312: 	Protocols *Protocols
		transport.go#L370: 		t2.Protocols = &Protocols{}
		transport.go#L464: func (t *Transport) protocols() Protocols {
		transport.go#L468: 	var p Protocols