forked from quic-go/quic-go
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v0.45.2-mod' into v0.46.0-mod
# Conflicts: # send_stream.go
- Loading branch information
Showing
33 changed files
with
1,515 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
package congestion | ||
|
||
import ( | ||
"time" | ||
|
||
"github.com/quic-go/quic-go/internal/protocol" | ||
) | ||
|
||
type ( | ||
ByteCount protocol.ByteCount | ||
PacketNumber protocol.PacketNumber | ||
) | ||
|
||
// Expose some constants from protocol that congestion control algorithms may need. | ||
const ( | ||
InitialPacketSizeIPv4 = protocol.InitialPacketSize | ||
InitialPacketSizeIPv6 = protocol.InitialPacketSize | ||
MinPacingDelay = protocol.MinPacingDelay | ||
MaxPacketBufferSize = protocol.MaxPacketBufferSize | ||
MinInitialPacketSize = protocol.MinInitialPacketSize | ||
MaxCongestionWindowPackets = protocol.MaxCongestionWindowPackets | ||
PacketsPerConnectionID = protocol.PacketsPerConnectionID | ||
) | ||
|
||
type AckedPacketInfo struct { | ||
PacketNumber PacketNumber | ||
BytesAcked ByteCount | ||
ReceivedTime time.Time | ||
} | ||
|
||
type LostPacketInfo struct { | ||
PacketNumber PacketNumber | ||
BytesLost ByteCount | ||
} | ||
|
||
type CongestionControl interface { | ||
SetRTTStatsProvider(provider RTTStatsProvider) | ||
TimeUntilSend(bytesInFlight ByteCount) time.Time | ||
HasPacingBudget(now time.Time) bool | ||
OnPacketSent(sentTime time.Time, bytesInFlight ByteCount, packetNumber PacketNumber, bytes ByteCount, isRetransmittable bool) | ||
CanSend(bytesInFlight ByteCount) bool | ||
MaybeExitSlowStart() | ||
OnPacketAcked(number PacketNumber, ackedBytes ByteCount, priorInFlight ByteCount, eventTime time.Time) | ||
OnCongestionEvent(number PacketNumber, lostBytes ByteCount, priorInFlight ByteCount) | ||
OnCongestionEventEx(priorInFlight ByteCount, eventTime time.Time, ackedPackets []AckedPacketInfo, lostPackets []LostPacketInfo) | ||
OnRetransmissionTimeout(packetsRetransmitted bool) | ||
SetMaxDatagramSize(size ByteCount) | ||
InSlowStart() bool | ||
InRecovery() bool | ||
GetCongestionWindow() ByteCount | ||
} | ||
|
||
type RTTStatsProvider interface { | ||
MinRTT() time.Duration | ||
LatestRTT() time.Duration | ||
SmoothedRTT() time.Duration | ||
MeanDeviation() time.Duration | ||
MaxAckDelay() time.Duration | ||
PTO(includeMaxAckDelay bool) time.Duration | ||
UpdateRTT(sendDelta, ackDelay time.Duration, now time.Time) | ||
SetMaxAckDelay(mad time.Duration) | ||
SetInitialRTT(t time.Duration) | ||
OnConnectionMigration() | ||
ExpireSmoothedMetrics() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.