mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
document the range of valid values for error codes
This commit is contained in:
parent
147181786a
commit
1f4e63aff6
2 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
||||||
- Rename `quic.Cookie` to `quic.Token` and `quic.Config.AcceptCookie` to `quic.Config.AcceptToken`.
|
- Rename `quic.Cookie` to `quic.Token` and `quic.Config.AcceptCookie` to `quic.Config.AcceptToken`.
|
||||||
- Distinguish between Retry tokens and tokens sent in NEW_TOKEN frames.
|
- Distinguish between Retry tokens and tokens sent in NEW_TOKEN frames.
|
||||||
- Enforce application protocol negotiation (via `tls.Config.NextProtos`).
|
- Enforce application protocol negotiation (via `tls.Config.NextProtos`).
|
||||||
|
- Use a varint for error codes.
|
||||||
|
|
||||||
## v0.11.0 (2019-04-05)
|
## v0.11.0 (2019-04-05)
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@ type Token struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// An ErrorCode is an application-defined error code.
|
// An ErrorCode is an application-defined error code.
|
||||||
|
// Valid values range between 0 and MAX_UINT62.
|
||||||
type ErrorCode = protocol.ApplicationErrorCode
|
type ErrorCode = protocol.ApplicationErrorCode
|
||||||
|
|
||||||
// Stream is the interface implemented by QUIC streams
|
// Stream is the interface implemented by QUIC streams
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue