Skip to content
Snippets Groups Projects
Commit b8c59cc8 authored by Phil's avatar Phil
Browse files

Fixed ARPPingResult constructor

parent 1174a1c7
No related branches found
No related tags found
No related merge requests found
...@@ -289,7 +289,7 @@ arpcachepoison(target, victim, [interval=60]) -> None ...@@ -289,7 +289,7 @@ arpcachepoison(target, victim, [interval=60]) -> None
class ARPingResult(SndRcvList): class ARPingResult(SndRcvList):
def __init__(self, res=None, name="ARPing", stats=None): def __init__(self, res=None, name="ARPing", stats=None):
PacketList.__init__(self, res, name, stats) SndRcvList.__init__(self, res, name, stats)
def show(self): def show(self):
for s,r in self.res: for s,r in self.res:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment