From 3acbf88242152abdadd5e82a8b5b0297c9069609 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 5 Mar 2019 16:14:36 +0100 Subject: [PATCH] ++ todos --- doc/plan.org | 1 + p4app/controller.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/plan.org b/doc/plan.org index 1ea4f22..99d64ee 100644 --- a/doc/plan.org +++ b/doc/plan.org @@ -114,6 +114,7 @@ ****** DONE Parse ICMPv6 up to neighbor solicitation -> no: checksum problem ****** DONE Use NDP (Neighbor Solicitation (NDP) , Neighbor Advertisement (NDP)) -> no: controller ****** Approach 2: use cpu header, forward information to controller +****** TODO Fix the ip address match/mapping: 42 -> 2a -> use hex originally ***** TODO For other nodes -> multicast ***** TODO Maybe implement link local addresses (missing at the moment) ****** ff02::/?? diff --git a/p4app/controller.py b/p4app/controller.py index 7300bb0..121a0b0 100644 --- a/p4app/controller.py +++ b/p4app/controller.py @@ -248,7 +248,7 @@ class L2Controller(object): log.debug("o={}".format(orig_packet.__repr__())) if cpu_header.task == self.task['DEBUG']: - pass + log.debug("Debug purpose only") elif cpu_header.task == self.task['ICMP6_NS']: log.debug("Doing neighbor solicitation") elif cpu_header.task == self.task['ICMP6_GENERAL']: