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

11 uses

	net/http/internal/httpcommon (current package)
		httpcommon.go#L539: 	Header                  map[string][]string
		httpcommon.go#L559: 	needsContinue := httpguts.HeaderValuesContainsToken(rp.Header["Expect"], "100-continue")
		httpcommon.go#L561: 		delete(rp.Header, "Expect")
		httpcommon.go#L564: 	if cookies := rp.Header["Cookie"]; len(cookies) > 1 {
		httpcommon.go#L565: 		rp.Header["Cookie"] = []string{strings.Join(cookies, "; ")}
		httpcommon.go#L570: 	for _, v := range rp.Header["Trailer"] {
		httpcommon.go#L585: 	delete(rp.Header, "Trailer")

	net/http
		h2_bundle.go#L6225: 	rp.Header = header
		h2_bundle.go#L6242: 		if vv, ok := rp.Header["Content-Length"]; ok {
		h2_bundle.go#L6280: 		Header:     rp.Header,
		h2_bundle.go#L7189: 			Header:    http2cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE