package http3 import ( "fmt" quic "github.com/lucas-clemente/quic-go" ) type errorCode quic.ErrorCode const ( errorNoError errorCode = 0x100 errorGeneralProtocolError errorCode = 0x101 errorInternalError errorCode = 0x102 errorStreamCreationError errorCode = 0x103 errorClosedCriticalStream errorCode = 0x104 errorFrameUnexpected errorCode = 0x105 errorFrameError errorCode = 0x106 errorExcessiveLoad errorCode = 0x107 errorIDError errorCode = 0x108 errorSettingsError errorCode = 0x109 errorMissingSettings errorCode = 0x10a errorRequestRejected errorCode = 0x10b errorRequestCanceled errorCode = 0x10c errorRequestIncomplete errorCode = 0x10d errorConnectError errorCode = 0x10f errorVersionFallback errorCode = 0x110 ) func (e errorCode) String() string { switch e { case errorNoError: return "H3_NO_ERROR" case errorGeneralProtocolError: return "H3_GENERAL_PROTOCOL_ERROR" case errorInternalError: return "H3_INTERNAL_ERROR" case errorStreamCreationError: return "H3_STREAM_CREATION_ERROR" case errorClosedCriticalStream: return "H3_CLOSED_CRITICAL_STREAM" case errorFrameUnexpected: return "H3_FRAME_UNEXPECTED" case errorFrameError: return "H3_FRAME_ERROR" case errorExcessiveLoad: return "H3_EXCESSIVE_LOAD" case errorIDError: return "H3_ID_ERROR" case errorSettingsError: return "H3_SETTINGS_ERROR" case errorMissingSettings: return "H3_MISSING_SETTINGS" case errorRequestRejected: return "H3_REQUEST_REJECTED" case errorRequestCanceled: return "H3_REQUEST_CANCELLED" case errorRequestIncomplete: return "H3_INCOMPLETE_REQUEST" case errorConnectError: return "H3_CONNECT_ERROR" case errorVersionFallback: return "H3_VERSION_FALLBACK" default: return fmt.Sprintf("unknown error code: %#x", uint16(e)) } }