net/http.http2requestParam.header (field)

13 uses

	net/http (current package)
		h2_bundle.go#L5581: 	rp.header = make(Header)
		h2_bundle.go#L5583: 		rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
		h2_bundle.go#L5586: 		rp.authority = rp.header.Get("Host")
		h2_bundle.go#L5594: 		if vv, ok := rp.header["Content-Length"]; ok {
		h2_bundle.go#L5613: 	header                  Header
		h2_bundle.go#L5624: 	needsContinue := rp.header.Get("Expect") == "100-continue"
		h2_bundle.go#L5626: 		rp.header.Del("Expect")
		h2_bundle.go#L5629: 	if cookies := rp.header["Cookie"]; len(cookies) > 1 {
		h2_bundle.go#L5630: 		rp.header.Set("Cookie", strings.Join(cookies, "; "))
		h2_bundle.go#L5635: 	for _, v := range rp.header["Trailer"] {
		h2_bundle.go#L5650: 	delete(rp.header, "Trailer")
		h2_bundle.go#L5675: 		Header:     rp.header,
		h2_bundle.go#L6454: 			header:    http2cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE