diff --git a/src/proto/connection.rs b/src/proto/connection.rs index 7ec1666..4e83af8 100644 --- a/src/proto/connection.rs +++ b/src/proto/connection.rs @@ -36,6 +36,16 @@ pub fn new(transport: proto::Inner) -> Connection } } +impl Connection { + pub fn increment_local_window_size(&mut self, id: StreamId, increment: usize) { + unimplemented!() + } + + pub fn poll_remote_window_size(&mut self, id: StreamId) -> Poll { + unimplemented!() + } +} + impl Connection where T: AsyncRead + AsyncWrite, {