func vendor/golang.org/x/net/http/httpguts.ValidHeaderFieldName

6 uses

	vendor/golang.org/x/net/http/httpguts (current package)
		httplex.go#L196: func ValidHeaderFieldName(v string) bool {

	net/http
		header.go#L198: 		if !httpguts.ValidHeaderFieldName(kv.key) {
		http.go#L129: 	return httpguts.ValidHeaderFieldName(v)
		server.go#L1065: 		if !httpguts.ValidHeaderFieldName(k) {
		transport.go#L567: 		if !httpguts.ValidHeaderFieldName(k) {

	net/http/internal/httpcommon
		httpcommon.go#L498: 		if !httpguts.ValidHeaderFieldName(k) && k != ":protocol" {