diff options
author | Stefan Kobza <skobza@cisco.com> | 2016-02-10 19:41:09 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-02-17 16:29:03 +0000 |
commit | 8f285166faf13156a4f7c70adac9a7e20549268f (patch) | |
tree | 29a4adb583dcf7feaba301fccedeaaef5d572674 /resources/libraries/python/PacketVerifier.py | |
parent | da15035461569ea175aabbac1df735cd5598b0b3 (diff) |
Test VIRL connection.
Change-Id: I812ff9c8c9669b63907469c643c839e8bd3b419a
Signed-off-by: Stefan Kobza <skobza@cisco.com>
Diffstat (limited to 'resources/libraries/python/PacketVerifier.py')
-rw-r--r-- | resources/libraries/python/PacketVerifier.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/libraries/python/PacketVerifier.py b/resources/libraries/python/PacketVerifier.py index 566ea95c25..19d6aaf53f 100644 --- a/resources/libraries/python/PacketVerifier.py +++ b/resources/libraries/python/PacketVerifier.py @@ -232,6 +232,7 @@ class RxQueue(PacketVerifier): return None pkt = self._sock.recv(0x7fff) + pkt_pad = auto_pad(pkt) print 'Received packet on {0} of len {1}'.format(self._ifname, len(pkt)) Ether(pkt).show2() print @@ -241,7 +242,7 @@ class RxQueue(PacketVerifier): # Auto pad all packets in ignore list ignore[i] = auto_pad(ig_pkt) for ig_pkt in ignore: - if ig_pkt == pkt: + if ig_pkt == pkt_pad: # Found the packet in ignore list, get another one # TODO: subtract timeout - time_spent in here ignore.remove(ig_pkt) |