mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
Merge pull request #2162 from lucas-clemente/datagram
implement the datagram draft
This commit is contained in:
commit
9693a46d31
36 changed files with 879 additions and 67 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue