diff options
author | Cy Schubert <cy@FreeBSD.org> | 2025-02-18 19:43:15 -0800 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2025-02-18 19:55:42 -0800 |
commit | 37ce58edb91a6fb06efa1c847ed8710f988d39c4 (patch) | |
tree | 3e64807f03276cc3114d68f6d0f2ded0bd8771b6 /net/ntp/files | |
parent | net/ntp: ntpd does not connect to NTP server with link local IPv6 address (diff) |
net/ntp: Replace the workaround from 98e34e8e2557 with a patch from upstream
43537eb9c3e5 circumvented an upstream patch which caused an IPv6
pool regresson. This patch removes the circumvention and replaces
it with an upstream patch planned for the new release of ntp.
Obtained from: src bc02e6558720
MFH: 2025Q1
Diffstat (limited to 'net/ntp/files')
-rw-r--r-- | net/ntp/files/patch-ntpd_ntp__io.c | 15 | ||||
-rw-r--r-- | net/ntp/files/patch-ntpd_ntp_proto.c | 18 |
2 files changed, 13 insertions, 20 deletions
diff --git a/net/ntp/files/patch-ntpd_ntp__io.c b/net/ntp/files/patch-ntpd_ntp__io.c index b2bbf0fee058..10bac6d961f7 100644 --- a/net/ntp/files/patch-ntpd_ntp__io.c +++ b/net/ntp/files/patch-ntpd_ntp__io.c @@ -1,6 +1,17 @@ --- ntpd/ntp_io.c.orig 2024-05-07 04:21:17.000000000 -0700 -+++ ntpd/ntp_io.c 2025-02-18 19:31:18.434141000 -0800 -@@ -3205,7 +3205,7 @@ ++++ ntpd/ntp_io.c 2025-02-18 19:38:16.412031000 -0800 +@@ -1486,9 +1486,7 @@ + + if (IS_IPV6(psau)) { + p6addr = &psau->sa6.sin6_addr; +- if ( IN6_IS_ADDR_LINKLOCAL(p6addr) +- || IN6_IS_ADDR_SITELOCAL(p6addr)) { +- ++ if (IN6_IS_ADDR_LINKLOCAL(p6addr)) { + return TRUE; + } + } else if (IS_IPV4(psau)) { +@@ -3205,7 +3203,7 @@ } do { diff --git a/net/ntp/files/patch-ntpd_ntp_proto.c b/net/ntp/files/patch-ntpd_ntp_proto.c deleted file mode 100644 index d691fd1caade..000000000000 --- a/net/ntp/files/patch-ntpd_ntp_proto.c +++ /dev/null @@ -1,18 +0,0 @@ ---- ntpd/ntp_proto.c.orig 2024-05-07 04:21:28.000000000 -0700 -+++ ntpd/ntp_proto.c 2024-12-23 14:40:06.218503000 -0800 -@@ -471,6 +471,7 @@ - return; - } - -+#if 0 - /* [Bug 3851] drop pool servers which can no longer be reached. */ - if (MDF_PCLNT & peer->cast_flags) { - if ( (IS_IPV6(&peer->srcadr) && !nonlocal_v6_addr_up) -@@ -479,6 +480,7 @@ - return; - } - } -+#endif - - /* - * In unicast modes the dance is much more intricate. It is |