mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-07 06:07:36 +03:00
remove the INVALID_MIGRATION error
This commit is contained in:
parent
2265513b2d
commit
973bcf6dcd
1 changed files with 0 additions and 3 deletions
|
@ -22,7 +22,6 @@ const (
|
|||
TransportParameterError ErrorCode = 0x8
|
||||
VersionNegotiationError ErrorCode = 0x9
|
||||
ProtocolViolation ErrorCode = 0xa
|
||||
InvalidMigration ErrorCode = 0xc
|
||||
CryptoBufferExceeded ErrorCode = 0xd
|
||||
)
|
||||
|
||||
|
@ -70,8 +69,6 @@ func (e ErrorCode) String() string {
|
|||
return "VERSION_NEGOTIATION_ERROR"
|
||||
case ProtocolViolation:
|
||||
return "PROTOCOL_VIOLATION"
|
||||
case InvalidMigration:
|
||||
return "INVALID_MIGRATION"
|
||||
case CryptoBufferExceeded:
|
||||
return "CRYPTO_BUFFER_EXCEEDED"
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue