Remove unecessary arg to icmp6_echo_reply

This commit is contained in:
Nico Schottelius 2019-03-23 15:14:17 +01:00
parent 87704b1c0f
commit 4d610a5cb5
2 changed files with 7 additions and 1 deletions

View File

@ -1140,6 +1140,12 @@ DEBUG:main:INCOMING: <Ether dst=33:33:ff:00:00:42 src=00:00:0a:00:00:01 type=0x
***** Included in the header
**** Requirements
**** Development mode/loop
Code - commit - push - pull - restart switch - restart controller -
check whether tables are applied correctly (type conversion
problems) - start tcpdump - start test program - stop tcpdump - add
pcap to git repo - git add-commit-push - git pull - start wireshark -
debug packets - analyse code - goto 1
*** Performance comparison
*** Feature/Functionality difference / overview / Challenges / limitations in P4
**** P4: cannot read key from table

View File

@ -193,7 +193,7 @@ class L2Controller(object):
self.controller.table_add("icmp6",
"icmp6_echo_reply",
[str(icmp6_net), str(icmp6_type)], [str(addr)])
[str(icmp6_net), str(icmp6_type)], [])
def fill_tables(self):