golang.org/x/net/http2.Setting.Val (field)
41 uses
golang.org/x/net/http2 (current package)
frame.go#L740: return s.Val, true
frame.go#L752: Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
frame.go#L810: f.writeUint32(s.Val)
frame.go#L1584: fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val)
http2.go#L119: Val uint32
http2.go#L123: return fmt.Sprintf("[%v = %d]", s.ID, s.Val)
http2.go#L131: if s.Val != 1 && s.Val != 0 {
http2.go#L135: if s.Val > 1<<31-1 {
http2.go#L139: if s.Val < 16384 || s.Val > 1<<24-1 {
server.go#L1581: sc.headerTableSize = s.Val
server.go#L1582: sc.hpackEncoder.SetMaxDynamicTableSize(s.Val)
server.go#L1584: sc.pushEnabled = s.Val != 0
server.go#L1586: sc.clientMaxStreams = s.Val
server.go#L1588: return sc.processSettingInitialWindowSize(s.Val)
server.go#L1590: sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31
server.go#L1592: sc.peerMaxHeaderListSize = s.Val
transport.go#L688: {ID: SettingEnablePush, Val: 0},
transport.go#L689: {ID: SettingInitialWindowSize, Val: transportDefaultStreamFlow},
transport.go#L692: initialSettings = append(initialSettings, Setting{ID: SettingMaxHeaderListSize, Val: max})
transport.go#L2350: cc.maxFrameSize = s.Val
transport.go#L2352: cc.maxConcurrentStreams = s.Val
transport.go#L2354: cc.peerMaxHeaderListSize = uint64(s.Val)
transport.go#L2360: if s.Val > math.MaxInt32 {
transport.go#L2367: delta := int32(s.Val) - int32(cc.initialWindowSize)
transport.go#L2373: cc.initialWindowSize = s.Val
google.golang.org/grpc/internal/transport
controlbuf.go#L810: l.oiws = s.Val
controlbuf.go#L821: updateHeaderTblSize(l.hEnc, s.Val)
http2_client.go#L327: Val: uint32(t.initialWindowSize),
http2_client.go#L333: Val: *opts.MaxHeaderListSize,
http2_client.go#L936: Val: n,
http2_client.go#L1045: *maxStreams = s.Val
http2_client.go#L1049: *t.maxSendHeaderListSize = s.Val
http2_server.go#L140: Val: http2MaxFrameLen,
http2_server.go#L150: Val: maxStreams,
http2_server.go#L167: Val: uint32(iwz)})
http2_server.go#L172: Val: *config.MaxHeaderListSize,
http2_server.go#L178: Val: *config.HeaderTableSize,
http2_server.go#L571: Val: n,
http2_server.go#L671: *t.maxSendHeaderListSize = s.Val
 |
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. |