allow socket broadcast

This commit is contained in:
Alex 2023-03-09 14:00:57 +01:00
parent b969c9ada6
commit 7c9839f900
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ impl Daemon {
fn new(config: Config) -> Result<Self> {
let (our_pubkey, listen_port, _peers) = wg_dump(&config)?;
let socket = UdpSocket::bind(SocketAddr::new("0.0.0.0".parse()?, config.gossip_port))?;
socket.set_broadcast(true)?;
Ok(Daemon {
config,
our_pubkey,