add a function to reset the connection flow controller

This commit is contained in:
Marten Seemann 2021-03-01 11:55:02 +08:00
parent c741b6fc09
commit a04a0072fb
4 changed files with 55 additions and 0 deletions

View file

@ -29,6 +29,7 @@ type StreamFlowController interface {
// The ConnectionFlowController is the flow controller for the connection.
type ConnectionFlowController interface {
flowController
Reset() error
}
type connectionFlowControllerI interface {