From 76d1927c6ebce3475b58e35d34e2c5d408195989 Mon Sep 17 00:00:00 2001 From: Hoe Hao Cheng Date: Fri, 24 Nov 2023 15:56:20 +0800 Subject: [PATCH] Revert "ip: fix dirtying in dual-stacked situations" This reverts commit fb0fb9b1b0caa43436789f7b2ff4071b2fcc4857. DynDNSv2 protocol may require both IPs to be present at the same time. --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b9efb86..60cbfbe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -174,7 +174,6 @@ fn main() { let ips = service_ips[name] .iter() .map(|name| &ips[name]) - .filter(|ip| ip.is_dirty()) .filter_map(|ip| ip.address()) .cloned() .collect::>(); // TODO: use collect_into in the future