mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
ackhandler: remove error return value of SentPacketHandler.ResetForRetry (#4834)
This commit is contained in:
parent
f41a6a644d
commit
d87e2bb649
5 changed files with 14 additions and 23 deletions
|
@ -16,7 +16,7 @@ type SentPacketHandler interface {
|
|||
ReceivedAck(f *wire.AckFrame, encLevel protocol.EncryptionLevel, rcvTime time.Time) (bool /* 1-RTT packet acked */, error)
|
||||
ReceivedBytes(protocol.ByteCount)
|
||||
DropPackets(protocol.EncryptionLevel)
|
||||
ResetForRetry(rcvTime time.Time) error
|
||||
ResetForRetry(rcvTime time.Time)
|
||||
SetHandshakeConfirmed()
|
||||
|
||||
// The SendMode determines if and what kind of packets can be sent.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue