mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 05:37:36 +03:00
only create a single session when two Initials arrive at the same time
This commit is contained in:
parent
5a834851a8
commit
e65df402dd
7 changed files with 190 additions and 59 deletions
|
@ -108,7 +108,6 @@ var _ = Describe("Session", func() {
|
|||
Eventually(areSessionsRunning).Should(BeFalse())
|
||||
|
||||
sessionRunner = NewMockSessionRunner(mockCtrl)
|
||||
sessionRunner.EXPECT().Add(gomock.Any(), gomock.Any()).Times(2)
|
||||
mconn = newMockConnection()
|
||||
tokenGenerator, err := handshake.NewTokenGenerator()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
|
@ -119,6 +118,7 @@ var _ = Describe("Session", func() {
|
|||
clientDestConnID,
|
||||
destConnID,
|
||||
srcConnID,
|
||||
[16]byte{},
|
||||
populateServerConfig(&Config{}),
|
||||
nil, // tls.Config
|
||||
tokenGenerator,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue