Skip to content

Commit 9c2b2ba

Browse files
davidv1992cikzh
authored andcommitted
Fixed IPV6 addresse
1 parent 76d3d53 commit 9c2b2ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

statime-linux/src/socket.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ use timestamped_socket::{
1414
},
1515
};
1616

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

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

0 commit comments

Comments
 (0)