1 2 3 4 5 6 7 8 9
//! DNS streams use tor_proto::stream::IncomingStream; /// Handle an incoming DNS stream #[allow(clippy::unused_async)] // TODO(relay) pub(crate) async fn handle_resolve(_incoming: IncomingStream) -> anyhow::Result<()> { todo!() }