missed socket.set_nonblocking for tcp

This commit is contained in:
rustdesk 2022-07-12 23:28:32 +08:00
parent 7db82a22a9
commit f1724820b1

View File

@ -68,6 +68,8 @@ fn new_socket(addr: std::net::SocketAddr, reuse: bool) -> Result<TcpSocket, std:
socket.set_reuseport(true)?;
socket.set_reuseaddr(true)?;
}
// only nonblocking work with tokio, https://stackoverflow.com/questions/64649405/receiver-on-tokiompscchannel-only-receives-messages-when-buffer-is-full
socket.set_nonblocking(true)?;
socket.bind(addr)?;
Ok(socket)
}