diff --git a/src/socket.rs b/src/socket.rs index 928fd542..e5268fc3 100644 --- a/src/socket.rs +++ b/src/socket.rs @@ -2276,16 +2276,10 @@ impl Socket { /// /// This value contains the original destination IPv6 address of the connection /// redirected using `ip6tables` `REDIRECT` or `TPROXY`. - #[cfg(all( - feature = "all", - any(target_os = "android", target_os = "fuchsia", target_os = "linux",) - ))] + #[cfg(all(feature = "all", any(target_os = "android", target_os = "linux",)))] #[cfg_attr( docsrs, - doc(cfg(all( - feature = "all", - any(target_os = "android", target_os = "fuchsia", target_os = "linux",) - ))) + doc(cfg(all(feature = "all", any(target_os = "android", target_os = "linux",)))) )] pub fn original_dst_ipv6(&self) -> io::Result { // Safety: `getsockopt` initialises the `SockAddr` for us.