feat: add log for unique client connection count

This commit is contained in:
Greg Heartsfield 2021-12-12 10:58:00 -06:00
parent 531f6c4624
commit 6910b8d945

View File

@ -58,6 +58,8 @@ fn main() -> Result<(), Error> {
info!("shutting down due to SIGINT");
ctrl_c_shutdown.send(()).ok();
});
// track unique client connection count
let mut client_accept_count: usize = 0;
let mut stop_listening = invoke_shutdown.subscribe();
// handle new client connection requests, or SIGINT signals.
loop {
@ -66,6 +68,8 @@ fn main() -> Result<(), Error> {
break;
}
Ok((stream, _)) = listener.accept() => {
client_accept_count += 1;
info!("creating new connection for client #{}",client_accept_count);
tokio::spawn(nostr_server(
stream,
bcast_tx.clone(),