implement more cubic sender tests

This commit is contained in:
Lucas Clemente 2016-04-28 12:03:49 +02:00
parent 153ff598d9
commit b6a2f72b29
7 changed files with 297 additions and 10 deletions

View file

@ -12,4 +12,9 @@ type SendAlgorithm interface {
GetCongestionWindow() uint64
OnCongestionEvent(rttUpdated bool, bytesInFlight uint64, ackedPackets PacketVector, lostPackets PacketVector)
BandwidthEstimate() Bandwidth
SetNumEmulatedConnections(n int)
OnRetransmissionTimeout(packetsRetransmitted bool)
HybridSlowStart() *HybridSlowStart // only for testing
SlowstartThreshold() protocol.PacketNumber // only for testing
}