make it possible to log DATAGRAM frames

This commit is contained in:
Marten Seemann 2020-12-09 15:30:38 +07:00
parent eefd2b73f7
commit 0582228e00
5 changed files with 33 additions and 0 deletions

View file

@ -59,3 +59,8 @@ type StreamFrame struct {
Length ByteCount
Fin bool
}
// A DatagramFrame is a DATAGRAM frame.
type DatagramFrame struct {
Length ByteCount
}