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

3 uses

	vendor/golang.org/x/net/http/httpguts (current package)
		httplex.go#L108: 		if headerValueContainsToken(v, token) {
		httplex.go#L139: func headerValueContainsToken(v string, token string) bool {
		httplex.go#L142: 		return tokenEqual(trimOWS(v[:comma]), token) || headerValueContainsToken(v[comma+1:], token)