From 76b44eb9bf4e85b7e3f1d0235d2f9040e50f4fcc Mon Sep 17 00:00:00 2001 From: Ishan Jain Date: Fri, 28 Jul 2023 05:01:53 +0530 Subject: [PATCH] updated note --- src/processor.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/processor.rs b/src/processor.rs index eb720a4..b3b0b29 100644 --- a/src/processor.rs +++ b/src/processor.rs @@ -90,6 +90,10 @@ impl<'a> Processor<'a> { .into_iter() .filter_map(|dst_if| interfaces.iter().find(|x| x.name == dst_if)); + // TODO(ishan): Stop blasting this every where. + // Try to limit answers traffic between destinations + // it should not be broadcasting an answer to all networks just because 1 + // asked for it for dst_if in dst_ifs { let dst_ifid = ifname_to_ifidx(dst_if.name.to_string());