Skip to content

Commit

Permalink
Fixed IPV6 addresse
Browse files Browse the repository at this point in the history
  • Loading branch information
davidv1992 authored and cikzh committed Nov 1, 2023
1 parent 76d3d53 commit 9c2b2ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions statime-linux/src/socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ use timestamped_socket::{
},
};

const IPV6_PRIMARY_MULTICAST: Ipv6Addr = Ipv6Addr::new(0xff, 0x0e, 0, 0, 0, 0, 0x01, 0x81);
const IPV6_PDELAY_MULTICAST: Ipv6Addr = Ipv6Addr::new(0xff, 0x02, 0, 0, 0, 0, 0, 0x6b);
const IPV6_PRIMARY_MULTICAST: Ipv6Addr = Ipv6Addr::new(0xff0e, 0, 0, 0, 0, 0, 0, 0x181);
const IPV6_PDELAY_MULTICAST: Ipv6Addr = Ipv6Addr::new(0xff02, 0, 0, 0, 0, 0, 0, 0x6b);

const IPV4_PRIMARY_MULTICAST: Ipv4Addr = Ipv4Addr::new(224, 0, 1, 129);
const IPV4_PDELAY_MULTICAST: Ipv4Addr = Ipv4Addr::new(224, 0, 0, 107);
Expand Down

0 comments on commit 9c2b2ba

Please sign in to comment.