mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add an application-defined error type, for RST_STREAM and STOP_SENDING
This commit is contained in:
parent
efa781b067
commit
40650d93f0
6 changed files with 22 additions and 20 deletions
|
@ -64,6 +64,9 @@ type ByteCount uint64
|
|||
// MaxByteCount is the maximum value of a ByteCount
|
||||
const MaxByteCount = ByteCount(1<<62 - 1)
|
||||
|
||||
// An ApplicationErrorCode is an application-defined error code.
|
||||
type ApplicationErrorCode uint16
|
||||
|
||||
// MaxReceivePacketSize maximum packet size of any QUIC packet, based on
|
||||
// ethernet's max size, minus the IP and UDP headers. IPv6 has a 40 byte header,
|
||||
// UDP adds an additional 8 bytes. This is a total overhead of 48 bytes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue