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

9 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") {

	net/http
		h2_bundle.go#L6194: 		Scheme:    f.PseudoValue("scheme"),
		h2_bundle.go#L6207: 		if rp.Protocol == "" && (rp.Path != "" || rp.Scheme != "" || rp.Authority == "") {
		h2_bundle.go#L6210: 	} else if rp.Method == "" || rp.Path == "" || (rp.Scheme != "https" && rp.Scheme != "http") {
		h2_bundle.go#L6262: 	if rp.Scheme == "https" {
		h2_bundle.go#L7186: 			Scheme:    msg.url.Scheme,