mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove StatelessResetKey from the Config, it's now on the Transport
This commit is contained in:
parent
8189e75be6
commit
b79b532b04
7 changed files with 7 additions and 16 deletions
|
@ -213,7 +213,6 @@ var _ = Describe("Client", func() {
|
|||
|
||||
Context("quic.Config", func() {
|
||||
It("setups with the right values", func() {
|
||||
srk := &StatelessResetKey{'f', 'o', 'o', 'b', 'a', 'r'}
|
||||
tokenStore := NewLRUTokenStore(10, 4)
|
||||
config := &Config{
|
||||
HandshakeIdleTimeout: 1337 * time.Minute,
|
||||
|
@ -221,7 +220,6 @@ var _ = Describe("Client", func() {
|
|||
MaxIncomingStreams: 1234,
|
||||
MaxIncomingUniStreams: 4321,
|
||||
ConnectionIDLength: 13,
|
||||
StatelessResetKey: srk,
|
||||
TokenStore: tokenStore,
|
||||
EnableDatagrams: true,
|
||||
}
|
||||
|
@ -231,7 +229,6 @@ var _ = Describe("Client", func() {
|
|||
Expect(c.MaxIncomingStreams).To(BeEquivalentTo(1234))
|
||||
Expect(c.MaxIncomingUniStreams).To(BeEquivalentTo(4321))
|
||||
Expect(c.ConnectionIDLength).To(Equal(13))
|
||||
Expect(c.StatelessResetKey).To(Equal(srk))
|
||||
Expect(c.TokenStore).To(Equal(tokenStore))
|
||||
Expect(c.EnableDatagrams).To(BeTrue())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue