mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
fix overflow of the max_ack_delay when parsing transport parameters
This commit is contained in:
parent
2f736d3599
commit
d476067f65
3 changed files with 8 additions and 8 deletions
|
@ -297,10 +297,10 @@ func (p *TransportParameters) readNumericTransportParameter(
|
|||
}
|
||||
p.AckDelayExponent = uint8(val)
|
||||
case maxAckDelayParameterID:
|
||||
maxAckDelay := time.Duration(val) * time.Millisecond
|
||||
if maxAckDelay >= protocol.MaxMaxAckDelay {
|
||||
return fmt.Errorf("invalid value for max_ack_delay: %dms (maximum %dms)", maxAckDelay/time.Millisecond, (protocol.MaxMaxAckDelay-time.Millisecond)/time.Millisecond)
|
||||
if val > uint64(protocol.MaxMaxAckDelay/time.Millisecond) {
|
||||
return fmt.Errorf("invalid value for max_ack_delay: %dms (maximum %dms)", val, protocol.MaxMaxAckDelay/time.Millisecond)
|
||||
}
|
||||
maxAckDelay := time.Duration(val) * time.Millisecond
|
||||
if maxAckDelay < 0 {
|
||||
maxAckDelay = utils.InfDuration
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue