mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
don't queue the currently active conn ID when receiving a duplicate
This commit is contained in:
parent
92b898e811
commit
a53569839c
2 changed files with 20 additions and 0 deletions
|
@ -95,6 +95,22 @@ var _ = Describe("Connection ID Manager", func() {
|
|||
Expect(rt2).To(BeNil())
|
||||
})
|
||||
|
||||
It("ignores duplicates for the currently used connection ID", func() {
|
||||
f := &wire.NewConnectionIDFrame{
|
||||
SequenceNumber: 1,
|
||||
ConnectionID: protocol.ConnectionID{1, 2, 3, 4},
|
||||
StatelessResetToken: [16]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0xa, 0xb, 0xc, 0xd, 0xe},
|
||||
}
|
||||
Expect(m.Add(f)).To(Succeed())
|
||||
Expect(m.Get()).To(Equal(protocol.ConnectionID{1, 2, 3, 4}))
|
||||
c, _ := get()
|
||||
Expect(c).To(BeNil())
|
||||
// Now send the same connection ID again. It should not be queued.
|
||||
Expect(m.Add(f)).To(Succeed())
|
||||
c, _ = get()
|
||||
Expect(c).To(BeNil())
|
||||
})
|
||||
|
||||
It("rejects duplicates with different connection IDs", func() {
|
||||
Expect(m.Add(&wire.NewConnectionIDFrame{
|
||||
SequenceNumber: 42,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue