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

46 uses

	golang.org/x/net/http2 (current package)
		errors.go#L13: type ErrCode uint32
		errors.go#L16: 	ErrCodeNo                 ErrCode = 0x0
		errors.go#L17: 	ErrCodeProtocol           ErrCode = 0x1
		errors.go#L18: 	ErrCodeInternal           ErrCode = 0x2
		errors.go#L19: 	ErrCodeFlowControl        ErrCode = 0x3
		errors.go#L20: 	ErrCodeSettingsTimeout    ErrCode = 0x4
		errors.go#L21: 	ErrCodeStreamClosed       ErrCode = 0x5
		errors.go#L22: 	ErrCodeFrameSize          ErrCode = 0x6
		errors.go#L23: 	ErrCodeRefusedStream      ErrCode = 0x7
		errors.go#L24: 	ErrCodeCancel             ErrCode = 0x8
		errors.go#L25: 	ErrCodeCompression        ErrCode = 0x9
		errors.go#L26: 	ErrCodeConnect            ErrCode = 0xa
		errors.go#L27: 	ErrCodeEnhanceYourCalm    ErrCode = 0xb
		errors.go#L28: 	ErrCodeInadequateSecurity ErrCode = 0xc
		errors.go#L29: 	ErrCodeHTTP11Required     ErrCode = 0xd
		errors.go#L32: var errCodeName = map[ErrCode]string{
		errors.go#L49: func (e ErrCode) String() string {
		errors.go#L58: type ConnectionError ErrCode
		errors.go#L60: func (e ConnectionError) Error() string { return fmt.Sprintf("connection error: %s", ErrCode(e)) }
		errors.go#L66: 	Code     ErrCode
		errors.go#L70: func streamError(id uint32, code ErrCode) StreamError {
		errors.go#L98: 	Code   ErrCode // the ConnectionError error code
		frame.go#L526: func (fr *Framer) connError(code ErrCode, reason string) error {
		frame.go#L862: 	ErrCode      ErrCode
		frame.go#L885: 		ErrCode:      ErrCode(binary.BigEndian.Uint32(p[4:8])),
		frame.go#L890: func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugData []byte) error {
		frame.go#L1172: 	ErrCode ErrCode
		frame.go#L1182: 	return &RSTStreamFrame{fh, ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
		frame.go#L1189: func (f *Framer) WriteRSTStream(streamID uint32, code ErrCode) error {
		server.go#L484: func (sc *serverConn) rejectConn(err ErrCode, debug string) {
		server.go#L538: 	goAwayCode                  ErrCode
		server.go#L1318: func (sc *serverConn) goAway(code ErrCode) {
		server.go#L1385: 		sc.goAway(ErrCode(ev))
		transport.go#L1744: 		cc.fr.WriteGoAway(0, ErrCode(ce), nil)
		transport.go#L1753: 	ErrCode      ErrCode
		transport.go#L2506: func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, err error) {
		write.go#L87: 	code        ErrCode

	google.golang.org/grpc/internal/transport
		controlbuf.go#L125: 	rstCode  http2.ErrCode
		controlbuf.go#L177: 	code      http2.ErrCode
		http2_client.go#L734: 		rstCode http2.ErrCode
		http2_client.go#L743: func (t *http2Client) closeStream(s *Stream, err error, rst bool, rstCode http2.ErrCode, st *status.Status, mdata map[string][]string, eosReceived bool) {
		http2_server.go#L1105: func (t *http2Server) finishStream(s *Stream, rst bool, rstCode http2.ErrCode, hdr *headerFrame, eosReceived bool) {
		http2_server.go#L1124: func (t *http2Server) closeStream(s *Stream, rst bool, rstCode http2.ErrCode, eosReceived bool) {
		http2_server.go#L1144: func (t *http2Server) drain(code http2.ErrCode, debugData []byte) {
		http_util.go#L60: 	http2ErrConvTab = map[http2.ErrCode]codes.Code{
		http_util.go#L76: 	statusCodeConvTab = map[codes.Code]http2.ErrCode{