Skip to content

Commit

Permalink
Force multicast
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrasherLT committed Aug 22, 2024
1 parent b252f3f commit bd5ee8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1470,9 +1470,9 @@ impl Runtime {
}

async fn build_starcast(&self) -> Result<Option<StarcastEntities>> {
if !self.features.multicast {
return Ok(None);
}
// if !self.features.multicast {
// return Ok(None);
// }

let (chan_transport, chan_peer) = Chan::pipe();
let virtual_peer = Arc::new(StarcastPeer::start(chan_peer, self.features.ipv6).await?);
Expand Down

0 comments on commit bd5ee8c

Please sign in to comment.