Skip to content

Commit

Permalink
Fix multicast bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrasherLT committed Aug 8, 2024
1 parent 55ecdc1 commit 5016549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/telio-model/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub const VPN_INTERNAL_IPV6: Ipv6Addr = Ipv6Addr::new(0xfd74, 0x656c, 0x696f, 0,
/// VPN IPv4 Non-Meshnet Address
pub const VPN_EXTERNAL_IPV4: Ipv4Addr = Ipv4Addr::new(10, 5, 0, 1);
/// Ipv4 multicast range
pub const IPV4_MULTICAST_NETWORK: ConstIpv4Net = ConstIpv4Net::new(Ipv4Addr::new(244, 0, 0, 0), 4);
pub const IPV4_MULTICAST_NETWORK: ConstIpv4Net = ConstIpv4Net::new(Ipv4Addr::new(224, 0, 0, 0), 4);
/// Ipv6 multicast range
pub const IPV6_MULTICAST_NETWORK: ConstIpv6Net =
ConstIpv6Net::new(Ipv6Addr::new(0xff02, 0, 0, 0, 0, 0, 0, 0xfb), 128);
Expand Down

0 comments on commit 5016549

Please sign in to comment.