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!() }