update HTTP/3 Datagram to draft-ietf-masque-h3-datagram-07 (#3355)

This commit is contained in:
Marten Seemann 2022-03-25 09:44:12 +01:00 committed by GitHub
parent d065fb47e1
commit 0d5440a024
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -26,6 +26,7 @@ const (
errorMessageError errorCode = 0x10e
errorConnectError errorCode = 0x10f
errorVersionFallback errorCode = 0x110
errorDatagramError errorCode = 0x4a1268
)
func (e errorCode) String() string {
@ -64,6 +65,8 @@ func (e errorCode) String() string {
return "H3_CONNECT_ERROR"
case errorVersionFallback:
return "H3_VERSION_FALLBACK"
case errorDatagramError:
return "H3_DATAGRAM_ERROR"
default:
return fmt.Sprintf("unknown error code: %#x", uint16(e))
}

View file

@ -66,7 +66,7 @@ func (f *headersFrame) Write(b *bytes.Buffer) {
quicvarint.Write(b, f.Length)
}
const settingDatagram = 0x276
const settingDatagram = 0xffd277
type settingsFrame struct {
Datagram bool

View file

@ -131,7 +131,7 @@ type Server struct {
// Enable support for HTTP/3 datagrams.
// If set to true, QuicConfig.EnableDatagram will be set.
// See https://www.ietf.org/archive/id/draft-schinazi-masque-h3-datagram-02.html.
// See https://datatracker.ietf.org/doc/html/draft-ietf-masque-h3-datagram-07.
EnableDatagrams bool
// The port to use in Alt-Svc response headers.