type net/http.http2ErrCode
37 uses
net/http (current package)
h2_bundle.go#L1092: type http2ErrCode uint32
h2_bundle.go#L1095: http2ErrCodeNo http2ErrCode = 0x0
h2_bundle.go#L1096: http2ErrCodeProtocol http2ErrCode = 0x1
h2_bundle.go#L1097: http2ErrCodeInternal http2ErrCode = 0x2
h2_bundle.go#L1098: http2ErrCodeFlowControl http2ErrCode = 0x3
h2_bundle.go#L1099: http2ErrCodeSettingsTimeout http2ErrCode = 0x4
h2_bundle.go#L1100: http2ErrCodeStreamClosed http2ErrCode = 0x5
h2_bundle.go#L1101: http2ErrCodeFrameSize http2ErrCode = 0x6
h2_bundle.go#L1102: http2ErrCodeRefusedStream http2ErrCode = 0x7
h2_bundle.go#L1103: http2ErrCodeCancel http2ErrCode = 0x8
h2_bundle.go#L1104: http2ErrCodeCompression http2ErrCode = 0x9
h2_bundle.go#L1105: http2ErrCodeConnect http2ErrCode = 0xa
h2_bundle.go#L1106: http2ErrCodeEnhanceYourCalm http2ErrCode = 0xb
h2_bundle.go#L1107: http2ErrCodeInadequateSecurity http2ErrCode = 0xc
h2_bundle.go#L1108: http2ErrCodeHTTP11Required http2ErrCode = 0xd
h2_bundle.go#L1111: var http2errCodeName = map[http2ErrCode]string{
h2_bundle.go#L1128: func (e http2ErrCode) String() string {
h2_bundle.go#L1137: type http2ConnectionError http2ErrCode
h2_bundle.go#L1140: return fmt.Sprintf("connection error: %s", http2ErrCode(e))
h2_bundle.go#L1147: Code http2ErrCode
h2_bundle.go#L1151: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1179: Code http2ErrCode // the ConnectionError error code
h2_bundle.go#L1769: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
h2_bundle.go#L2105: ErrCode http2ErrCode
h2_bundle.go#L2128: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2133: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
h2_bundle.go#L2415: ErrCode http2ErrCode
h2_bundle.go#L2425: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L2432: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
h2_bundle.go#L4050: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
h2_bundle.go#L4104: goAwayCode http2ErrCode
h2_bundle.go#L4887: func (sc *http2serverConn) goAway(code http2ErrCode) {
h2_bundle.go#L4954: sc.goAway(http2ErrCode(ev))
h2_bundle.go#L8247: cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
h2_bundle.go#L8256: ErrCode http2ErrCode
h2_bundle.go#L9009: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, err error) {
h2_bundle.go#L9335: code http2ErrCode
 |
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. |