mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
remove the RetireBugBackwardsCompatibilityMode
This commit is contained in:
parent
e9d12b7f83
commit
b2857b5442
5 changed files with 1 additions and 48 deletions
|
@ -64,15 +64,6 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
}
|
||||
})
|
||||
|
||||
It("doesn't issue new connection IDs in RetireBugBackwardsCompatibilityMode", func() {
|
||||
RetireBugBackwardsCompatibilityMode = true
|
||||
defer func() { RetireBugBackwardsCompatibilityMode = false }()
|
||||
|
||||
Expect(g.SetMaxActiveConnIDs(4)).To(Succeed())
|
||||
Expect(retiredConnIDs).To(BeEmpty())
|
||||
Expect(addedConnIDs).To(BeEmpty())
|
||||
})
|
||||
|
||||
It("limits the number of connection IDs that it issues", func() {
|
||||
Expect(g.SetMaxActiveConnIDs(9999999)).To(Succeed())
|
||||
Expect(retiredConnIDs).To(BeEmpty())
|
||||
|
@ -129,18 +120,6 @@ var _ = Describe("Connection ID Generator", func() {
|
|||
}))
|
||||
})
|
||||
|
||||
It("doesn't error if the peers tries to retire a connection ID in a packet with that connection ID in RetireBugBackwardsCompatibilityMode", func() {
|
||||
Expect(g.SetMaxActiveConnIDs(4)).To(Succeed())
|
||||
Expect(queuedFrames).ToNot(BeEmpty())
|
||||
Expect(queuedFrames[0]).To(BeAssignableToTypeOf(&wire.NewConnectionIDFrame{}))
|
||||
|
||||
RetireBugBackwardsCompatibilityMode = true
|
||||
defer func() { RetireBugBackwardsCompatibilityMode = false }()
|
||||
|
||||
f := queuedFrames[0].(*wire.NewConnectionIDFrame)
|
||||
Expect(g.Retire(f.SequenceNumber, f.ConnectionID)).To(Succeed())
|
||||
})
|
||||
|
||||
It("issues new connection IDs, when old ones are retired", func() {
|
||||
Expect(g.SetMaxActiveConnIDs(5)).To(Succeed())
|
||||
queuedFrames = nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue