mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
only create a single session for duplicate Initials
This commit is contained in:
parent
85c19fbb5a
commit
dad30e7c33
6 changed files with 123 additions and 58 deletions
|
@ -181,6 +181,14 @@ var _ = Describe("Packet Handler Map", func() {
|
|||
Expect(handler.Add(connID, NewMockPacketHandler(mockCtrl))).To(BeTrue())
|
||||
Expect(handler.Add(connID, NewMockPacketHandler(mockCtrl))).To(BeFalse())
|
||||
})
|
||||
|
||||
It("says if a connection ID is already taken, for AddWithConnID", func() {
|
||||
clientDestConnID := protocol.ConnectionID{1, 2, 3, 4, 5, 6, 7, 8}
|
||||
newConnID1 := protocol.ConnectionID{1, 2, 3, 4}
|
||||
newConnID2 := protocol.ConnectionID{4, 3, 2, 1}
|
||||
Expect(handler.AddWithConnID(clientDestConnID, newConnID1, func() packetHandler { return NewMockPacketHandler(mockCtrl) })).To(BeTrue())
|
||||
Expect(handler.AddWithConnID(clientDestConnID, newConnID2, func() packetHandler { return NewMockPacketHandler(mockCtrl) })).To(BeFalse())
|
||||
})
|
||||
})
|
||||
|
||||
Context("running a server", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue