add a quic.Config option for DATAGRAM frames

This commit is contained in:
Marten Seemann 2019-10-06 17:49:49 +02:00
parent 231bc918d4
commit 913ddc5081
4 changed files with 9 additions and 1 deletions

View file

@ -259,7 +259,10 @@ type Config struct {
StatelessResetKey []byte
// KeepAlive defines whether this peer will periodically send a packet to keep the connection alive.
KeepAlive bool
Tracer logging.Tracer
// See https://datatracker.ietf.org/doc/draft-ietf-quic-datagram/.
// Datagrams will only be available when both peers enable datagram support.
EnableDatagrams bool
Tracer logging.Tracer
}
// ConnectionState records basic details about a QUIC connection