mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
move 0-RTT queue handling from the packet handler map to the server
This commit is contained in:
parent
c0b94ee4b0
commit
58487803d3
7 changed files with 367 additions and 217 deletions
|
@ -7,7 +7,6 @@ import (
|
|||
"io"
|
||||
mrand "math/rand"
|
||||
"net"
|
||||
"sort"
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
@ -214,7 +213,7 @@ var _ = Describe("0-RTT", func() {
|
|||
ln,
|
||||
proxy.LocalPort(),
|
||||
clientTLSConf,
|
||||
&quic.Config{ConnectionIDLength: connIDLen},
|
||||
getQuicConfig(&quic.Config{ConnectionIDLength: connIDLen}),
|
||||
PRData,
|
||||
)
|
||||
|
||||
|
@ -237,8 +236,7 @@ var _ = Describe("0-RTT", func() {
|
|||
Expect(num0RTT).ToNot(BeZero())
|
||||
zeroRTTPackets := get0RTTPackets(tracer.getRcvdLongHeaderPackets())
|
||||
Expect(len(zeroRTTPackets)).To(BeNumerically(">", 10))
|
||||
sort.Slice(zeroRTTPackets, func(i, j int) bool { return zeroRTTPackets[i] < zeroRTTPackets[j] })
|
||||
Expect(zeroRTTPackets[0]).To(Equal(protocol.PacketNumber(0)))
|
||||
Expect(zeroRTTPackets).To(ContainElement(protocol.PacketNumber(0)))
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue