2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 05:47:45 +00:00

Add 'omapi' keyword

This commit is contained in:
Ted Lemon 2000-06-24 06:17:55 +00:00
parent c3369c5b53
commit 9ea249af6e
2 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
"$Id: conflex.c,v 1.76 2000/06/02 21:27:01 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
"$Id: conflex.c,v 1.77 2000/06/24 06:17:52 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@ -793,6 +793,8 @@ static enum dhcp_token intern (atom, dfv)
return TOKEN_NEXT;
break;
case 'o':
if (!strcasecmp (atom + 1, "mapi"))
return OMAPI;
if (!strcasecmp (atom + 1, "r"))
return OR;
if (!strcasecmp (atom + 1, "n"))

View File

@ -278,6 +278,7 @@ enum dhcp_token {
TOKEN_RESERVED = 577,
TOKEN_BOOTP = 578,
TOKEN_NEXT = 579,
OMAPI = 580
};
#define is_identifier(x) ((x) >= FIRST_TOKEN && \