mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add methods for sending data to FlowControlManager
This commit is contained in:
parent
9336245ddd
commit
ac54ac66c7
6 changed files with 155 additions and 4 deletions
|
@ -74,6 +74,19 @@ func (m *mockFlowControlHandler) UpdateHighestReceived(streamID protocol.StreamI
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *mockFlowControlHandler) AddBytesSent(streamID protocol.StreamID, n protocol.ByteCount) error {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockFlowControlHandler) SendWindowSize(streamID protocol.StreamID) (protocol.ByteCount, error) {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockFlowControlHandler) RemainingConnectionWindowSize() protocol.ByteCount {
|
||||
panic("not implemented")
|
||||
}
|
||||
func (m *mockFlowControlHandler) UpdateWindow(streamID protocol.StreamID, offset protocol.ByteCount) (bool, error) {
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
var _ = Describe("Stream", func() {
|
||||
var (
|
||||
str *stream
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue