mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
wire: apply the default value for the active_connection_id_limit (#3806)
This commit is contained in:
parent
1951878816
commit
fce0261c34
4 changed files with 31 additions and 9 deletions
|
@ -289,15 +289,16 @@ var _ = Describe("Transport Parameters", func() {
|
|||
Expect(float32(dataLen) / num).To(BeNumerically("~", float32(defaultLen)/num+float32(entryLen), 1))
|
||||
})
|
||||
|
||||
It("sets the default value for the ack_delay_exponent, when no value was sent", func() {
|
||||
It("sets the default value for the ack_delay_exponent and max_active_connection_id_limit, when no values were sent", func() {
|
||||
data := (&TransportParameters{
|
||||
AckDelayExponent: protocol.DefaultAckDelayExponent,
|
||||
StatelessResetToken: &protocol.StatelessResetToken{},
|
||||
ActiveConnectionIDLimit: 2,
|
||||
ActiveConnectionIDLimit: protocol.DefaultActiveConnectionIDLimit,
|
||||
}).Marshal(protocol.PerspectiveServer)
|
||||
p := &TransportParameters{}
|
||||
Expect(p.Unmarshal(data, protocol.PerspectiveServer)).To(Succeed())
|
||||
Expect(p.AckDelayExponent).To(BeEquivalentTo(protocol.DefaultAckDelayExponent))
|
||||
Expect(p.ActiveConnectionIDLimit).To(BeEquivalentTo(protocol.DefaultActiveConnectionIDLimit))
|
||||
})
|
||||
|
||||
It("errors when the varint value has the wrong length", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue