mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-22 14:58:44 -06:00
disable broadcasting
This commit is contained in:
parent
324dc5d43e
commit
b940a9d9d6
|
@ -17,7 +17,7 @@ impl Server {
|
||||||
pub fn bind(addr: SocketAddr) -> anyhow::Result<Self> {
|
pub fn bind(addr: SocketAddr) -> anyhow::Result<Self> {
|
||||||
let socket = UdpSocket::bind(addr)?;
|
let socket = UdpSocket::bind(addr)?;
|
||||||
socket.set_nonblocking(true)?;
|
socket.set_nonblocking(true)?;
|
||||||
socket.set_broadcast(true)?;
|
//socket.set_broadcast(true)?;
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
socket,
|
socket,
|
||||||
clients: HashMap::with_capacity_and_hasher(MAX_CLIENTS, BuildNoHashHasher::default())
|
clients: HashMap::with_capacity_and_hasher(MAX_CLIENTS, BuildNoHashHasher::default())
|
||||||
|
|
Loading…
Reference in a new issue