qos_net 0.10.2

Socket to TCP proxy for QuorumOS enclave network access
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! QOS Net proxy binary entry point.

#[cfg(feature = "proxy")]
#[tokio::main]
async fn main() {
	use qos_net::cli::CLI;
	CLI::execute().await;
}

#[cfg(not(any(feature = "proxy")))]
fn main() {
	panic!("Cannot run qos_net CLI without proxy feature enabled")
}