ISAKMP: Add Forticlient (connect License and EndPoint Control) from Fortinet Vendor ID
authorAlexis La Goutte <alexis.lagoutte@gmail.com>
Mon, 30 Jan 2017 20:33:44 +0000 (21:33 +0100)
committerMichael Mann <mmann78@netscape.net>
Tue, 31 Jan 2017 00:24:58 +0000 (00:24 +0000)
Change-Id: Idf40de8bfa76cbe4437a157fc90bd994d4b2233e
Reviewed-on: https://code.wireshark.org/review/19872
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Michael Mann <mmann78@netscape.net>
epan/dissectors/packet-isakmp.c

index cf2e55d1f70b7fb87e114c5283d6777b56b9d216..24ef7afaf7c3f4c6edc0af0de7685cfe6f5e9886 100644 (file)
@@ -2779,6 +2779,17 @@ static const guint8 VID_FORTINET_FORTIGATE[] = { /* Fortigate (Fortinet) */
         0x82, 0x99, 0x03, 0x17, 0x57, 0xA3, 0x60, 0x82,
         0xC6, 0xA6, 0x21, 0xDE
 };
+
+static const guint8 VID_FORTINET_FORTICLIENT_CONNECT[] = { /* Forticlient Connect license (Fortinet) */
+        0x4C, 0x53, 0x42, 0x7B, 0x6D, 0x46, 0x5D, 0x1B,
+        0x33, 0x7B, 0xB7, 0x55, 0xA3, 0x7A, 0x7F, 0xEF
+};
+
+static const guint8 VID_FORTINET_ENDPOINT_CONTROL[] = { /* Endpoint Control (Fortinet) */
+        0xB4, 0xF0, 0x1C, 0xA9, 0x51, 0xE9, 0xDA, 0x8D,
+        0x0B, 0xAF, 0xBB, 0xD3, 0x4A, 0xD3, 0x04, 0x4E
+};
+
 /* Based from value_string.c/h */
 static const byte_string vendor_id[] = {
   { VID_SSH_IPSEC_EXPRESS_1_1_0, sizeof(VID_SSH_IPSEC_EXPRESS_1_1_0), "Ssh Communications Security IPSEC Express version 1.1.0" },
@@ -2888,6 +2899,8 @@ static const byte_string vendor_id[] = {
   { VID_MS_IKEE_20080212_CGA1, sizeof(VID_MS_IKEE_20080212_CGA1), "IKE CGA Version 1" },
   { VID_MS_IKEE_20080212_MS_NDC, sizeof(VID_MS_IKEE_20080212_MS_NDC), "MS-Negotiation Discovery Capable" },
   { VID_FORTINET_FORTIGATE, sizeof(VID_FORTINET_FORTIGATE), "Fortigate (Fortinet)" },
+  { VID_FORTINET_FORTICLIENT_CONNECT, sizeof(VID_FORTINET_FORTICLIENT_CONNECT), "Forticlient connect license (Fortinet)" },
+  { VID_FORTINET_ENDPOINT_CONTROL, sizeof(VID_FORTINET_ENDPOINT_CONTROL), "Endpoint Control (Fortinet)" },
   { 0, 0, NULL }
 };