forked from quic-go/quic-go
14 lines
364 B
Go
14 lines
364 B
Go
package protocol
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Parameters", func() {
|
|
It("can queue more packets in the session than in the 0-RTT queue", func() {
|
|
Expect(MaxSessionUnprocessedPackets).To(BeNumerically(">", Max0RTTQueueLen))
|
|
Expect(MaxUndecryptablePackets).To(BeNumerically(">", Max0RTTQueueLen))
|
|
})
|
|
})
|