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

@ -69,6 +69,8 @@ var _ = Describe("Config", func() {
f.Set(reflect.ValueOf([]byte{1, 2, 3, 4}))
case "KeepAlive":
f.Set(reflect.ValueOf(true))
case "EnableDatagrams":
f.Set(reflect.ValueOf(true))
case "Tracer":
f.Set(reflect.ValueOf(mocklogging.NewMockTracer(mockCtrl)))
default: