aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython/wspy_dissector.py
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-06 02:31:10 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-06 02:31:10 +0000
commitee208c8dcc371ca10986b7e8ea28c933e4bfaae9 (patch)
tree34da4ba8bde2ea6a7f071f47cd24bf2950f39331 /epan/wspython/wspy_dissector.py
parent625fbd5f9a09483485f9c2b0271ab29afb68a597 (diff)
Add support for RELATIVE-OID ASN.1 type. Bug 9192 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9192)
From Ed Beroset. svn path=/trunk/; revision=52393
Diffstat (limited to 'epan/wspython/wspy_dissector.py')
-rwxr-xr-xepan/wspython/wspy_dissector.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/wspython/wspy_dissector.py b/epan/wspython/wspy_dissector.py
index aee71d090d..e8993cd13e 100755
--- a/epan/wspython/wspy_dissector.py
+++ b/epan/wspython/wspy_dissector.py
@@ -66,7 +66,8 @@ FT_IPXNET,
FT_FRAMENUM,
FT_PCRE,
FT_GUID,
-FT_OID) = map(int, range(31))
+FT_OID,
+FT_REL_OID) = map(int, range(32))
# hf_register_info from usual dissectors
class register_info(object):