We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7234537 commit 7b8ad3aCopy full SHA for 7b8ad3a
tests/socket.rs
@@ -1183,10 +1183,10 @@ test!(IPv4 recv_tos, set_recv_tos(true));
1183
test!(IPv4 broadcast, set_broadcast(true));
1184
1185
test!(IPv6 unicast_hops_v6, set_unicast_hops_v6(20));
1186
-#[cfg(not(any(windows, any(target_os = "dragonfly", target_os = "freebsd"))))]
+#[cfg(not(any(windows, target_os = "dragonfly", target_os = "freebsd")))]
1187
test!(IPv6 only_v6, set_only_v6(true));
1188
// IPv6 socket are already IPv6 only on FreeBSD and Windows.
1189
-#[cfg(any(windows, any(target_os = "freebsd")))]
+#[cfg(any(windows, target_os = "freebsd"))]
1190
test!(IPv6 only_v6, set_only_v6(false));
1191
1192
#[cfg(all(
0 commit comments