mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
Merge pull request #2254 from lucas-clemente/remove-version-negotiation-error
remove the VERSION_NEGOTIATION_ERROR
This commit is contained in:
commit
5607f6d8cb
1 changed files with 0 additions and 3 deletions
|
@ -20,7 +20,6 @@ const (
|
|||
FinalSizeError ErrorCode = 0x6
|
||||
FrameEncodingError ErrorCode = 0x7
|
||||
TransportParameterError ErrorCode = 0x8
|
||||
VersionNegotiationError ErrorCode = 0x9
|
||||
ProtocolViolation ErrorCode = 0xa
|
||||
CryptoBufferExceeded ErrorCode = 0xd
|
||||
)
|
||||
|
@ -65,8 +64,6 @@ func (e ErrorCode) String() string {
|
|||
return "FRAME_ENCODING_ERROR"
|
||||
case TransportParameterError:
|
||||
return "TRANSPORT_PARAMETER_ERROR"
|
||||
case VersionNegotiationError:
|
||||
return "VERSION_NEGOTIATION_ERROR"
|
||||
case ProtocolViolation:
|
||||
return "PROTOCOL_VIOLATION"
|
||||
case CryptoBufferExceeded:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue