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

23 uses

	golang.org/x/net/http2 (current package)
		frame.go#L761: type SettingsFrame struct {
		frame.go#L793: 	f := &SettingsFrame{FrameHeader: fh, p: p}
		frame.go#L804: func (f *SettingsFrame) IsAck() bool {
		frame.go#L808: func (f *SettingsFrame) Value(id SettingID) (v uint32, ok bool) {
		frame.go#L820: func (f *SettingsFrame) Setting(i int) Setting {
		frame.go#L828: func (f *SettingsFrame) NumSettings() int { return len(f.p) / 6 }
		frame.go#L831: func (f *SettingsFrame) HasDuplicates() bool {
		frame.go#L863: func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error {
		frame.go#L1834: 	case *SettingsFrame:
		server.go#L384: 		fr := &SettingsFrame{
		server.go#L1434: 		if _, ok := f.(*SettingsFrame); !ok {
		server.go#L1456: 	case *SettingsFrame:
		server.go#L1606: func (sc *serverConn) processSettings(f *SettingsFrame) error {
		transport.go#L1901: 			if _, ok := f.(*SettingsFrame); !ok {
		transport.go#L1917: 		case *SettingsFrame:
		transport.go#L2455: func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
		transport.go#L2472: func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {

	google.golang.org/grpc/internal/transport
		http2_client.go#L1299: func (t *http2Client) handleSettings(f *http2.SettingsFrame, isFirst bool) {
		http2_client.go#L1677: 	sf, ok := frame.(*http2.SettingsFrame)
		http2_client.go#L1747: 		case *http2.SettingsFrame:
		http2_server.go#L342: 	sf, ok := frame.(*http2.SettingsFrame)
		http2_server.go#L688: 		case *http2.SettingsFrame:
		http2_server.go#L843: func (t *http2Server) handleSettings(f *http2.SettingsFrame) {