golang.org/x/net/http2.requestParam.authority (field)

9 uses

	golang.org/x/net/http2 (current package)
		server.go#L1997: 		authority: f.PseudoValue("authority"),
		server.go#L2003: 		if rp.path != "" || rp.scheme != "" || rp.authority == "" {
		server.go#L2030: 	if rp.authority == "" {
		server.go#L2031: 		rp.authority = rp.header.Get("Host")
		server.go#L2057: 	scheme, authority, path string
		server.go#L2100: 		url_ = &url.URL{Host: rp.authority}
		server.go#L2101: 		requestURI = rp.authority // mimic HTTP/1 server behavior
		server.go#L2126: 		Host:       rp.authority,
		server.go#L2897: 			authority: msg.url.Host,