golang.org/x/net/http2.requestParam.header (field)
13 uses
golang.org/x/net/http2 (current package)
server.go#L2026: rp.header = make(http.Header)
server.go#L2028: rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
server.go#L2031: rp.authority = rp.header.Get("Host")
server.go#L2039: if vv, ok := rp.header["Content-Length"]; ok {
server.go#L2058: header http.Header
server.go#L2069: needsContinue := rp.header.Get("Expect") == "100-continue"
server.go#L2071: rp.header.Del("Expect")
server.go#L2074: if cookies := rp.header["Cookie"]; len(cookies) > 1 {
server.go#L2075: rp.header.Set("Cookie", strings.Join(cookies, "; "))
server.go#L2080: for _, v := range rp.header["Trailer"] {
server.go#L2095: delete(rp.header, "Trailer")
server.go#L2120: Header: rp.header,
server.go#L2899: header: cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |