Fix compile error on unix
This commit is contained in:
parent
cd2cf3346f
commit
fc570fa0bd
@ -282,7 +282,7 @@ fn derive_protocol(input: proc_macro2::TokenStream) -> proc_macro2::TokenStream
|
|||||||
#listener_statement
|
#listener_statement
|
||||||
loop {
|
loop {
|
||||||
let (stream, _) = listener.accept().await?;
|
let (stream, _) = listener.accept().await?;
|
||||||
#info("Accepted connection from {}", stream.peer_addr()?);
|
#info("Accepted connection from {:?}", stream.peer_addr()?);
|
||||||
let self_clone = self.clone();
|
let self_clone = self.clone();
|
||||||
let run_task = tokio::spawn(async move {
|
let run_task = tokio::spawn(async move {
|
||||||
self_clone.run(stream).await;
|
self_clone.run(stream).await;
|
||||||
|
Loading…
Reference in New Issue
Block a user