aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-02-14 18:15:29 +0000
committerGuy Harris <guy@alum.mit.edu>2000-02-14 18:15:29 +0000
commita9e588ea5797b3f1bb8fb330283d90c51600a56a (patch)
treee256f8627847989e8b6ce8c3218e63001d937226 /packet-bootp.c
parent679a1de7dd486f3f7351940f40e7e0a0bfaad3ab (diff)
Fix from Dietmar Petras to the BOOTP dissector - entries for BOOTP
options 62 and 63 were missing, and the table from which they were missing was an array indexed by the option number, so options 62 and above were decoded incorrectly. svn path=/trunk/; revision=1636
Diffstat (limited to 'packet-bootp.c')
-rw-r--r--packet-bootp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-bootp.c b/packet-bootp.c
index 5df6fe40ac..78bf6fcd99 100644
--- a/packet-bootp.c
+++ b/packet-bootp.c
@@ -2,7 +2,7 @@
* Routines for BOOTP/DHCP packet disassembly
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-bootp.c,v 1.25 2000/01/22 06:22:12 guy Exp $
+ * $Id: packet-bootp.c,v 1.26 2000/02/14 18:15:29 guy Exp $
*
* The information used comes from:
* RFC 2132: DHCP Options and BOOTP Vendor Extensions
@@ -168,6 +168,8 @@ bootp_option(const u_char *pd, proto_tree *bp_tree, int voff, int eoff)
/* 59 */ { "Rebinding Time Value", time_in_secs },
/* 60 */ { "Vendor class identifier", opaque },
/* 61 */ { "Client identifier", special },
+ /* 62 */ { "undefined", none },
+ /* 63 */ { "undefined", none },
/* 64 */ { "Network Information Service+ Domain", string },
/* 65 */ { "Network Information Service+ Servers", ipv4 },
/* 66 */ { "TFTP Server Name", string },