diff options
author | Klement Sekera <ksekera@cisco.com> | 2018-09-26 11:19:00 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-10-03 17:38:41 +0000 |
commit | 611864f4bddf787aff3323f162da589b1b26529c (patch) | |
tree | 685ae115de9e2fac60d14002ed748f4379ac8112 /test/util.py | |
parent | 400ded36422689c1783e220a1846447bc0058234 (diff) |
ipsec: add missing ipv6 ah code & ipv6 tests
Change-Id: I89e90193ded1beb6cb0950c15737f9467efac1c3
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/util.py')
-rw-r--r-- | test/util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/util.py b/test/util.py index 65e25f77f0c..d8ecf270f67 100644 --- a/test/util.py +++ b/test/util.py @@ -11,6 +11,7 @@ from scapy.packet import Raw from scapy.layers.inet import IP from scapy.layers.inet6 import IPv6, IPv6ExtHdrFragment, IPv6ExtHdrRouting,\ IPv6ExtHdrHopByHop +from scapy.utils import hexdump from socket import AF_INET6 @@ -20,6 +21,8 @@ def ppp(headline, packet): old_stdout = sys.stdout sys.stdout = o print(headline) + hexdump(packet) + print("") packet.show() sys.stdout = old_stdout return o.getvalue() |