mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
17 lines
602 B
Go
17 lines
602 B
Go
package flowcontrol
|
|
|
|
import "github.com/lucas-clemente/quic-go/protocol"
|
|
|
|
// A FlowController handles the flow control
|
|
type FlowController interface {
|
|
AddBytesSent(n protocol.ByteCount)
|
|
UpdateSendWindow(newOffset protocol.ByteCount) bool
|
|
SendWindowSize() protocol.ByteCount
|
|
UpdateHighestReceived(byteOffset protocol.ByteCount) protocol.ByteCount
|
|
IncrementHighestReceived(increment protocol.ByteCount)
|
|
AddBytesRead(n protocol.ByteCount)
|
|
MaybeTriggerBlocked() bool
|
|
MaybeTriggerWindowUpdate() (bool, protocol.ByteCount)
|
|
CheckFlowControlViolation() bool
|
|
GetHighestReceived() protocol.ByteCount
|
|
}
|