From 6c160faa061a9a8fb67f878b00218bb8597ab73d Mon Sep 17 00:00:00 2001 From: keithmattix Date: Fri, 13 Sep 2024 09:55:20 -0500 Subject: [PATCH] Fix barelink Signed-off-by: keithmattix --- src/sys/windows.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sys/windows.rs b/src/sys/windows.rs index 8dcb1b7f..3db91483 100644 --- a/src/sys/windows.rs +++ b/src/sys/windows.rs @@ -935,8 +935,8 @@ impl crate::Socket { /// Note: if using this function in a proxy context, you must query the /// redirect records for this socket and set them on the outbound socket /// created by your proxy in order for any OS level firewall rules to be - /// applied. Read more about how to do this here: - /// https://learn.microsoft.com/en-us/windows-hardware/drivers/network/using-bind-or-connect-redirection + /// applied. Read more in the Windows bind and connect redirection + /// [documentation](https://learn.microsoft.com/en-us/windows-hardware/drivers/network/using-bind-or-connect-redirection). #[cfg(feature = "all")] #[cfg_attr(docsrs, doc(cfg(all(windows, feature = "all"))))] pub fn original_dst(&self) -> io::Result { @@ -964,8 +964,8 @@ impl crate::Socket { /// Note: if using this function in a proxy context, you must query the /// redirect records for this socket and set them on the outbound socket /// created by your proxy in order for any OS level firewall rules to be - /// applied. Read more about how to do this here: - /// https://learn.microsoft.com/en-us/windows-hardware/drivers/network/using-bind-or-connect-redirection + /// applied. Read more in the Windows bind and connect redirection + /// [documentation](https://learn.microsoft.com/en-us/windows-hardware/drivers/network/using-bind-or-connect-redirection). #[cfg(feature = "all")] #[cfg_attr(docsrs, doc(cfg(all(windows, feature = "all"))))] pub fn original_dst_ipv6(&self) -> io::Result {