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

7 uses

	golang.org/x/net/internal/httpcommon (current package)
		request.go#L386: 	Scheme, Authority, Path string
		request.go#L452: 		url_, err = url.ParseRequestURI(rp.Path)
		request.go#L458: 		requestURI = rp.Path

	golang.org/x/net/http2
		server.go#L2243: 		Path:      f.PseudoValue("path"),
		server.go#L2254: 		if rp.Protocol == "" && (rp.Path != "" || rp.Scheme != "" || rp.Authority == "") {
		server.go#L2257: 	} else if rp.Method == "" || rp.Path == "" || (rp.Scheme != "https" && rp.Scheme != "http") {
		server.go#L3235: 			Path:      msg.url.RequestURI(),