net/http/internal/httpcommon.ServerRequestParam.Authority (field)

10 uses

	net/http/internal/httpcommon (current package)
		httpcommon.go#L537: 	Scheme, Authority, Path string
		httpcommon.go#L590: 	if strings.IndexByte(rp.Authority, '@') != -1 && (rp.Scheme == "http" || rp.Scheme == "https") {
		httpcommon.go#L599: 		url_ = &url.URL{Host: rp.Authority}
		httpcommon.go#L600: 		requestURI = rp.Authority // mimic HTTP/1 server behavior

	net/http
		h2_bundle.go#L6195: 		Authority: f.PseudoValue("authority"),
		h2_bundle.go#L6207: 		if rp.Protocol == "" && (rp.Path != "" || rp.Scheme != "" || rp.Authority == "") {
		h2_bundle.go#L6229: 	if rp.Authority == "" {
		h2_bundle.go#L6230: 		rp.Authority = header.Get("Host")
		h2_bundle.go#L6286: 		Host:       rp.Authority,
		h2_bundle.go#L7187: 			Authority: msg.url.Host,