2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-02 15:25:48 +00:00

Add client state keywords.

This commit is contained in:
Ted Lemon
2000-12-05 07:12:18 +00:00
parent c4232263d2
commit cf19946363

View File

@@ -43,7 +43,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: conflex.c,v 1.83 2000/11/28 22:11:52 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; "$Id: conflex.c,v 1.84 2000/12/05 07:12:18 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@@ -540,6 +540,8 @@ static enum dhcp_token intern (atom, dfv)
return BOOLEAN; return BOOLEAN;
if (!strcasecmp (atom + 1, "alance")) if (!strcasecmp (atom + 1, "alance"))
return BALANCE; return BALANCE;
if (!strcasecmp (atom + 1, "ound"))
return BOUND;
break; break;
case 'c': case 'c':
if (!strcasecmp (atom + 1, "ase")) if (!strcasecmp (atom + 1, "ase"))
@@ -860,6 +862,8 @@ static enum dhcp_token intern (atom, dfv)
return RECOVER; return RECOVER;
if (!strcasecmp (atom + 1, "ecover-done")) if (!strcasecmp (atom + 1, "ecover-done"))
return RECOVER_DONE; return RECOVER_DONE;
if (!strcasecmp (atom + 1, "econtact-interval"))
return RECONTACT_INTERVAL;
if (!strcasecmp (atom + 1, "equest")) if (!strcasecmp (atom + 1, "equest"))
return REQUEST; return REQUEST;
if (!strcasecmp (atom + 1, "equire")) if (!strcasecmp (atom + 1, "equire"))
@@ -922,6 +926,8 @@ static enum dhcp_token intern (atom, dfv)
return SERVER_IDENTIFIER; return SERVER_IDENTIFIER;
if (!strcasecmp (atom + 1, "elect-timeout")) if (!strcasecmp (atom + 1, "elect-timeout"))
return SELECT_TIMEOUT; return SELECT_TIMEOUT;
if (!strcasecmp (atom + 1, "elect"))
return SELECT;
if (!strcasecmp (atom + 1, "end")) if (!strcasecmp (atom + 1, "end"))
return SEND; return SEND;
if (!strcasecmp (atom + 1, "cript")) if (!strcasecmp (atom + 1, "cript"))