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

23 uses

	golang.org/x/net/http2 (current package)
		frame.go#L725: type SettingsFrame struct {
		frame.go#L757: 	f := &SettingsFrame{FrameHeader: fh, p: p}
		frame.go#L768: func (f *SettingsFrame) IsAck() bool {
		frame.go#L772: func (f *SettingsFrame) Value(id SettingID) (v uint32, ok bool) {
		frame.go#L784: func (f *SettingsFrame) Setting(i int) Setting {
		frame.go#L792: func (f *SettingsFrame) NumSettings() int { return len(f.p) / 6 }
		frame.go#L795: func (f *SettingsFrame) HasDuplicates() bool {
		frame.go#L827: func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error {
		frame.go#L1665: 	case *SettingsFrame:
		server.go#L547: 		fr := &SettingsFrame{
		server.go#L1592: 		if _, ok := f.(*SettingsFrame); !ok {
		server.go#L1614: 	case *SettingsFrame:
		server.go#L1762: func (sc *serverConn) processSettings(f *SettingsFrame) error {
		transport.go#L2281: 			if _, ok := f.(*SettingsFrame); !ok {
		transport.go#L2297: 		case *SettingsFrame:
		transport.go#L2829: func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
		transport.go#L2846: 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) {