golang.org/x/net/internal/httpcommon.ServerRequestParam.Authority (field)

10 uses

	golang.org/x/net/internal/httpcommon (current package)
		request.go#L386: 	Scheme, Authority, Path string
		request.go#L439: 	if strings.IndexByte(rp.Authority, '@') != -1 && (rp.Scheme == "http" || rp.Scheme == "https") {
		request.go#L448: 		url_ = &url.URL{Host: rp.Authority}
		request.go#L449: 		requestURI = rp.Authority // mimic HTTP/1 server behavior

	golang.org/x/net/http2
		server.go#L2242: 		Authority: f.PseudoValue("authority"),
		server.go#L2254: 		if rp.Protocol == "" && (rp.Path != "" || rp.Scheme != "" || rp.Authority == "") {
		server.go#L2276: 	if rp.Authority == "" {
		server.go#L2277: 		rp.Authority = header.Get("Host")
		server.go#L2333: 		Host:       rp.Authority,
		server.go#L3234: 			Authority: msg.url.Host,