blob: 744c832967a4d8d161b25a3abcda5702005ac9a0 (
plain)
1
2
3
4
5
6
7
8
9
|
//! Exit streams
use tor_proto::stream::IncomingStream;
/// Handle an incoming exit stream
#[allow(clippy::unused_async)] // TODO(relay)
pub(super) async fn handle_begin(_incoming: IncomingStream) -> anyhow::Result<()> {
todo!()
}
|