net/http/internal/httpcommon.Request.URL (field)

9 uses

	net/http/internal/httpcommon (current package)
		httpcommon.go#L181: 	URL                 *url.URL
		httpcommon.go#L223: 	if req.URL == nil {
		httpcommon.go#L229: 		host = req.URL.Host
		httpcommon.go#L254: 		path = req.URL.RequestURI()
		httpcommon.go#L257: 			path = strings.TrimPrefix(path, req.URL.Scheme+"://"+host)
		httpcommon.go#L259: 				if req.URL.Opaque != "" {
		httpcommon.go#L260: 					return res, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque)
		httpcommon.go#L297: 			f(":scheme", req.URL.Scheme)

	net/http
		h2_bundle.go#L8913: 			URL:                 req.URL,