Improve the sniffer design. (#1073)

This commit is contained in:
Przemysław Fierek
2016-12-14 08:59:23 -08:00
committed by Jonathan Hui
parent 7087f9af69
commit 100e568a09
4 changed files with 189 additions and 76 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ class Message(object):
assert self.ipv6_packet.ipv6_header.hop_limit == hop_limit
def __repr__(self):
return "Message(type={})".format(MessageType.name[self.type])
return "Message(type={})".format(self.type)
class MessagesSet(object):