diff --git a/src/main.rs b/src/main.rs index 1cd7c2b..6a6dc67 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,6 +16,7 @@ async fn main() -> Result<(), Report> { let ip_address = local_ip().unwrap(); // Set up a TCP listener to listen for incoming tcp requests at the ip address that is passed from the command line + // TODO: Custom ports let listener = TcpListener::bind(format!("{ip_address}:8080")).await.unwrap(); debug!("{}", format!("Bounded to {ip_address} port 8080"));