net/http.http2Setting.Val (field)

27 uses

	net/http (current package)
		h2_bundle.go#L1983: 			return s.Val, true
		h2_bundle.go#L1995: 		Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
		h2_bundle.go#L2053: 		f.writeUint32(s.Val)
		h2_bundle.go#L2827: 			fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val)
		h2_bundle.go#L3190: 	Val uint32
		h2_bundle.go#L3194: 	return fmt.Sprintf("[%v = %d]", s.ID, s.Val)
		h2_bundle.go#L3202: 		if s.Val != 1 && s.Val != 0 {
		h2_bundle.go#L3206: 		if s.Val > 1<<31-1 {
		h2_bundle.go#L3210: 		if s.Val < 16384 || s.Val > 1<<24-1 {
		h2_bundle.go#L5150: 		sc.headerTableSize = s.Val
		h2_bundle.go#L5151: 		sc.hpackEncoder.SetMaxDynamicTableSize(s.Val)
		h2_bundle.go#L5153: 		sc.pushEnabled = s.Val != 0
		h2_bundle.go#L5155: 		sc.clientMaxStreams = s.Val
		h2_bundle.go#L5157: 		return sc.processSettingInitialWindowSize(s.Val)
		h2_bundle.go#L5159: 		sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31
		h2_bundle.go#L5161: 		sc.peerMaxHeaderListSize = s.Val
		h2_bundle.go#L7191: 		{ID: http2SettingEnablePush, Val: 0},
		h2_bundle.go#L7192: 		{ID: http2SettingInitialWindowSize, Val: http2transportDefaultStreamFlow},
		h2_bundle.go#L7195: 		initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxHeaderListSize, Val: max})
		h2_bundle.go#L8853: 			cc.maxFrameSize = s.Val
		h2_bundle.go#L8855: 			cc.maxConcurrentStreams = s.Val
		h2_bundle.go#L8857: 			cc.peerMaxHeaderListSize = uint64(s.Val)
		h2_bundle.go#L8863: 			if s.Val > math.MaxInt32 {
		h2_bundle.go#L8870: 			delta := int32(s.Val) - int32(cc.initialWindowSize)
		h2_bundle.go#L8876: 			cc.initialWindowSize = s.Val