add methods for sending data to FlowControlManager

This commit is contained in:
Marten Seemann 2016-06-16 10:55:34 +07:00 committed by Lucas Clemente
parent 9336245ddd
commit ac54ac66c7
6 changed files with 155 additions and 4 deletions

View file

@ -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