remove unneeded overflow check when parsing the max_ack_delay

This commit is contained in:
Marten Seemann 2021-01-11 15:57:47 +08:00
parent d1c5297c0b
commit 2e5c43bef0

View file

@ -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: