slightly clearer server comment

This commit is contained in:
Will Greenberg
2023-12-02 10:56:57 -08:00
parent f319ee8d70
commit 0f534a0d11

View File

@@ -170,7 +170,8 @@ fn main() -> std::io::Result<()> {
}
});
// Accept connections from clients, writing any data received to the diag device
// Accept connections from a client (only one is accepted at a time),
// writing any data received to the diag device
loop {
println!("Waiting for client");
let (mut client_reader, _) = listener.accept()?;