tests pass
This commit is contained in:
@@ -157,12 +157,12 @@ impl<T: ControlStreams> ControlStreams for StreamRecvClose<T> {
|
||||
self.inner.send_flow_controller(id)
|
||||
}
|
||||
|
||||
fn check_can_send_data(&mut self, id: StreamId) -> Result<(), ConnectionError> {
|
||||
self.inner.check_can_send_data(id)
|
||||
fn can_send_data(&mut self, id: StreamId) -> bool {
|
||||
self.inner.can_send_data(id)
|
||||
}
|
||||
|
||||
fn check_can_recv_data(&mut self, id: StreamId) -> Result<(), ConnectionError> {
|
||||
self.inner.check_can_recv_data(id)
|
||||
fn can_recv_data(&mut self, id: StreamId) -> bool {
|
||||
self.inner.can_recv_data(id)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user