This commit is contained in:
rustdesk 2022-07-12 23:32:37 +08:00
parent f1724820b1
commit 4e45bc0ee0

View File

@ -68,8 +68,6 @@ 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)
}