mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
remove unneeded overflow check when parsing the max_ack_delay
This commit is contained in:
parent
d1c5297c0b
commit
2e5c43bef0
1 changed files with 1 additions and 5 deletions
|
@ -303,11 +303,7 @@ func (p *TransportParameters) readNumericTransportParameter(
|
|||
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
|
||||
}
|
||||
p.MaxAckDelay = maxAckDelay
|
||||
p.MaxAckDelay = time.Duration(val) * time.Millisecond
|
||||
case activeConnectionIDLimitParameterID:
|
||||
p.ActiveConnectionIDLimit = val
|
||||
case maxDatagramFrameSizeParameterID:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue