Merge pull request #2162 from lucas-clemente/datagram

implement the datagram draft
This commit is contained in:
Marten Seemann 2020-12-17 11:22:40 +07:00 committed by GitHub
commit 9693a46d31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 879 additions and 67 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: