From b073e347cce9f17f137cbd961a36c75b30a22148 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 26 Oct 2014 18:26:54 +0000 Subject: [PATCH] polypath: Ignore IPv6 Unique Local unicast addresses. --- debian/changelog | 6 ++++++ polypath.c | 1 + 2 files changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index aa25995..fbf85db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +secnet (0.4.0~beta2~) unstable; urgency=low + + * polypath: Ignore IPv6 Unique Local unicast addresses. + + -- + secnet (0.4.0~beta1) unstable; urgency=low New features: diff --git a/polypath.c b/polypath.c index abbda21..273849a 100644 --- a/polypath.c +++ b/polypath.c @@ -225,6 +225,7 @@ static void polypath_process_monitor_line(struct polypath *st, char *orgl, DONT("IPv6 address is " m) DONTMASK( 100, 0, 8, "Discard-Only (RFC6666)"); DONTMASK(2001, 0, 23, "in IETF protocol block (RFC2928)"); + DONTMASK(fc00, 0, 7, "Uniqe Local unicast (RFC4193)"); #undef DONTMASK break; } -- 2.30.2