aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isakmp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-28 20:03:37 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-28 20:03:37 +0000
commit8a100faa804e6390fbf17c96fb86f2e0d3ef183c (patch)
tree83bf648864e479adee80fe013caab0c2be17c837 /packet-isakmp.c
parent22ad95955e4166649ba7a7d0b04c048bf8316e0d (diff)
From Yaniv Kaul - remove the check for the SafeNet VID, as that's not
SafeNet's VID. svn path=/trunk/; revision=7594
Diffstat (limited to 'packet-isakmp.c')
-rw-r--r--packet-isakmp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/packet-isakmp.c b/packet-isakmp.c
index 52159eab67..3f421f4440 100644
--- a/packet-isakmp.c
+++ b/packet-isakmp.c
@@ -4,7 +4,7 @@
* for ISAKMP (RFC 2407)
* Brad Robel-Forrest <brad.robel-forrest@watchguard.com>
*
- * $Id: packet-isakmp.c,v 1.60 2003/01/20 22:27:03 guy Exp $
+ * $Id: packet-isakmp.c,v 1.61 2003/04/28 20:03:37 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -289,8 +289,6 @@ static const guint8 VID_CP[VID_CP_LEN] = {0xF4, 0xED, 0x19, 0xE0, 0xC1, 0x14, 0x
static const guint8 VID_CYBERGUARD[VID_LEN] = {0x9A, 0xA1, 0xF3, 0xB4, 0x34, 0x72, 0xA4, 0x5D, 0x5F, 0x50, 0x6A, 0xEB, 0x26, 0xC, 0xF2, 0x14};
-static const guint8 VID_SAFENET[VID_LEN] = {0x44, 0x85, 0x15, 0x2D, 0x18, 0xB6, 0xBB, 0xCD, 0x0B, 0xE8, 0xA8, 0x46, 0x95, 0x79, 0xDD, 0xCC};
-
static const guint8 VID_draft_ietf_ipsec_nat_t_ike_03[VID_LEN] = {0x7D, 0x94, 0x19, 0xA6, 0x53, 0x10, 0xCA, 0x6F, 0x2C, 0x17, 0x9D, 0x92, 0x15, 0x52, 0x9d, 0x56}; /* according to http://www.ietf.org/internet-drafts/draft-ietf-ipsec-nat-t-ike-03.txt */
/*
@@ -960,9 +958,6 @@ dissect_vid(tvbuff_t *tvb, int offset, int length, proto_tree *tree,
if (memcmp(pVID, VID_CYBERGUARD, isakmp_min(VID_LEN, length)) == 0)
proto_item_append_text(pt, "Cyber Guard");
else
- if (memcmp(pVID, VID_SAFENET, isakmp_min(VID_LEN, length)) == 0)
- proto_item_append_text(pt, "SafeNet");
- else
if (memcmp(pVID, VID_draft_ietf_ipsec_nat_t_ike_03, isakmp_min(VID_LEN, length)) == 0)
proto_item_append_text(pt, "draft-ietf-ipsec-nat-t-ike-03");
else