mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-02 19:57:35 +03:00
13 lines
364 B
Go
13 lines
364 B
Go
package protocol
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Parameters", func() {
|
|
It("can queue more packets in the session than in the 0-RTT queue", func() {
|
|
Expect(MaxConnUnprocessedPackets).To(BeNumerically(">", Max0RTTQueueLen))
|
|
Expect(MaxUndecryptablePackets).To(BeNumerically(">", Max0RTTQueueLen))
|
|
})
|
|
})
|