type golang.org/x/net/http2.SettingsFrame
21 uses
golang.org/x/net/http2 (current package)
frame.go#L693: type SettingsFrame struct {
frame.go#L722: f := &SettingsFrame{FrameHeader: fh, p: p}
frame.go#L732: func (f *SettingsFrame) IsAck() bool {
frame.go#L736: func (f *SettingsFrame) Value(id SettingID) (v uint32, ok bool) {
frame.go#L748: func (f *SettingsFrame) Setting(i int) Setting {
frame.go#L756: func (f *SettingsFrame) NumSettings() int { return len(f.p) / 6 }
frame.go#L759: func (f *SettingsFrame) HasDuplicates() bool {
frame.go#L791: func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error {
frame.go#L1577: case *SettingsFrame:
server.go#L1402: if _, ok := f.(*SettingsFrame); !ok {
server.go#L1409: case *SettingsFrame:
server.go#L1543: func (sc *serverConn) processSettings(f *SettingsFrame) error {
transport.go#L1843: if _, ok := f.(*SettingsFrame); !ok {
transport.go#L1865: case *SettingsFrame:
transport.go#L2334: func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
google.golang.org/grpc/internal/transport
http2_client.go#L1034: func (t *http2Client) handleSettings(f *http2.SettingsFrame, isFirst bool) {
http2_client.go#L1283: sf, ok := frame.(*http2.SettingsFrame)
http2_client.go#L1326: case *http2.SettingsFrame:
http2_server.go#L282: sf, ok := frame.(*http2.SettingsFrame)
http2_server.go#L501: case *http2.SettingsFrame:
http2_server.go#L660: func (t *http2Server) handleSettings(f *http2.SettingsFrame) {
![]() |
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. |