aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootp.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-02-07 04:25:37 +0000
committerGerald Combs <gerald@wireshark.org>2003-02-07 04:25:37 +0000
commit835c8d03fec24cedff038aa83cd904e3679ef595 (patch)
tree5ec8c0b89506dfb7119d093220fdb2d04efb1a01 /packet-bootp.c
parentd48ec06a6a47c739b63db70d2581f9c73ae3ced2 (diff)
Add the RFC 3203 FORCERENEW message type, as suggested by Suresh K.
svn path=/trunk/; revision=7085
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 3c3edf55a5..a5d341e58c 100644
--- a/packet-bootp.c
+++ b/packet-bootp.c
@@ -2,7 +2,7 @@
* Routines for BOOTP/DHCP packet disassembly
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-bootp.c,v 1.71 2002/09/28 04:12:38 gerald Exp $
+ * $Id: packet-bootp.c,v 1.72 2003/02/07 04:25:37 gerald Exp $
*
* The information used comes from:
* RFC 951: Bootstrap Protocol
@@ -13,6 +13,7 @@
* RFC 2489: Procedure for Defining New DHCP Options
* RFC 3046: DHCP Relay Agent Information Option
* RFC 3118: Authentication for DHCP Messages
+ * RFC 3203: DHCP reconfigure extension
* BOOTP and DHCP Parameters
* http://www.iana.org/assignments/bootp-dhcp-parameters
*
@@ -114,6 +115,7 @@ get_dhcp_type(guint8 byte)
"NAK",
"Release",
"Inform"
+ "Force Renew"
};
int i;