Remove unecessary arg to icmp6_echo_reply
This commit is contained in:
parent
87704b1c0f
commit
4d610a5cb5
2 changed files with 7 additions and 1 deletions
|
@ -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
|
***** Included in the header
|
||||||
|
|
||||||
**** Requirements
|
**** 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
|
*** Performance comparison
|
||||||
*** Feature/Functionality difference / overview / Challenges / limitations in P4
|
*** Feature/Functionality difference / overview / Challenges / limitations in P4
|
||||||
**** P4: cannot read key from table
|
**** P4: cannot read key from table
|
||||||
|
|
|
@ -193,7 +193,7 @@ class L2Controller(object):
|
||||||
|
|
||||||
self.controller.table_add("icmp6",
|
self.controller.table_add("icmp6",
|
||||||
"icmp6_echo_reply",
|
"icmp6_echo_reply",
|
||||||
[str(icmp6_net), str(icmp6_type)], [str(addr)])
|
[str(icmp6_net), str(icmp6_type)], [])
|
||||||
|
|
||||||
|
|
||||||
def fill_tables(self):
|
def fill_tables(self):
|
||||||
|
|
Loading…
Reference in a new issue