type golang.org/x/net/http2.SettingsFrame

23 uses

	golang.org/x/net/http2 (current package)
		frame.go#L711: type SettingsFrame struct {
		frame.go#L743: 	f := &SettingsFrame{FrameHeader: fh, p: p}
		frame.go#L754: func (f *SettingsFrame) IsAck() bool {
		frame.go#L758: func (f *SettingsFrame) Value(id SettingID) (v uint32, ok bool) {
		frame.go#L770: func (f *SettingsFrame) Setting(i int) Setting {
		frame.go#L778: func (f *SettingsFrame) NumSettings() int { return len(f.p) / 6 }
		frame.go#L781: func (f *SettingsFrame) HasDuplicates() bool {
		frame.go#L813: func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error {
		frame.go#L1621: 	case *SettingsFrame:
		server.go#L511: 		fr := &SettingsFrame{
		server.go#L1505: 		if _, ok := f.(*SettingsFrame); !ok {
		server.go#L1527: 	case *SettingsFrame:
		server.go#L1669: func (sc *serverConn) processSettings(f *SettingsFrame) error {
		transport.go#L2247: 			if _, ok := f.(*SettingsFrame); !ok {
		transport.go#L2263: 		case *SettingsFrame:
		transport.go#L2763: func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
		transport.go#L2780: func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {

	google.golang.org/grpc/internal/transport
		http2_client.go#L1199: func (t *http2Client) handleSettings(f *http2.SettingsFrame, isFirst bool) {
		http2_client.go#L1571: 	sf, ok := frame.(*http2.SettingsFrame)
		http2_client.go#L1635: 		case *http2.SettingsFrame:
		http2_server.go#L327: 	sf, ok := frame.(*http2.SettingsFrame)
		http2_server.go#L670: 		case *http2.SettingsFrame:
		http2_server.go#L829: func (t *http2Server) handleSettings(f *http2.SettingsFrame) {