mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
don't retire the conn ID that's in use when receiving a retransmission
This commit is contained in:
parent
d4720e43c7
commit
34f0c93e88
2 changed files with 22 additions and 1 deletions
|
@ -201,6 +201,27 @@ var _ = Describe("Connection ID Manager", func() {
|
|||
Expect(frameQueue[0].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeEquivalentTo(9))
|
||||
})
|
||||
|
||||
It("accepts retransmissions for the connection ID that is in use", func() {
|
||||
connID := protocol.ConnectionID{1, 2, 3, 4}
|
||||
|
||||
Expect(m.Add(&wire.NewConnectionIDFrame{
|
||||
SequenceNumber: 1,
|
||||
ConnectionID: connID,
|
||||
})).To(Succeed())
|
||||
Expect(frameQueue).To(BeEmpty())
|
||||
Expect(m.Get()).To(Equal(connID))
|
||||
Expect(frameQueue).To(HaveLen(1))
|
||||
Expect(frameQueue[0]).To(BeAssignableToTypeOf(&wire.RetireConnectionIDFrame{}))
|
||||
Expect(frameQueue[0].(*wire.RetireConnectionIDFrame).SequenceNumber).To(BeZero())
|
||||
frameQueue = nil
|
||||
|
||||
Expect(m.Add(&wire.NewConnectionIDFrame{
|
||||
SequenceNumber: 1,
|
||||
ConnectionID: connID,
|
||||
})).To(Succeed())
|
||||
Expect(frameQueue).To(BeEmpty())
|
||||
})
|
||||
|
||||
It("errors when the peer sends too connection IDs", func() {
|
||||
for i := uint8(1); i < protocol.MaxActiveConnectionIDs; i++ {
|
||||
Expect(m.Add(&wire.NewConnectionIDFrame{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue