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

@ -465,6 +465,7 @@ var _ = Describe("Client", func() {
ConnectionIDLength: 13,
StatelessResetKey: []byte("foobar"),
TokenStore: tokenStore,
EnableDatagrams: true,
}
c := populateClientConfig(config, false)
Expect(c.HandshakeIdleTimeout).To(Equal(1337 * time.Minute))
@ -474,6 +475,7 @@ var _ = Describe("Client", func() {
Expect(c.ConnectionIDLength).To(Equal(13))
Expect(c.StatelessResetKey).To(Equal([]byte("foobar")))
Expect(c.TokenStore).To(Equal(tokenStore))
Expect(c.EnableDatagrams).To(BeTrue())
})
It("errors when the Config contains an invalid version", func() {