(self, data: bytes)
| 57 | yield SendData(self.tunnel_connection, b"tunneled-" + data) |
| 58 | |
| 59 | def receive_data(self, data: bytes) -> layer.CommandGenerator[None]: |
| 60 | yield from self.event_to_child( |
| 61 | DataReceived(self.conn, data.replace(b"tunneled-", b"")) |
| 62 | ) |
| 63 | |
| 64 | |
| 65 | @pytest.mark.parametrize("success", ["success", "fail"]) |
nothing calls this directly
no test coverage detected