From: Ted Lemon Date: Wed, 11 Nov 1998 07:50:06 +0000 (+0000) Subject: Add billing limitation tokens X-Git-Tag: carrel-2~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bcc7373732087a63d6ba6065961971ccfdfed138;p=thirdparty%2Fdhcp.git Add billing limitation tokens --- diff --git a/common/conflex.c b/common/conflex.c index d71f401ef..eafaae5fa 100644 --- a/common/conflex.c +++ b/common/conflex.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: conflex.c,v 1.35 1998/11/09 02:44:14 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; +"$Id: conflex.c,v 1.36 1998/11/11 07:50:06 mellon Exp $ Copyright (c) 1995, 1996, 1997 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -382,6 +382,8 @@ static int intern (atom, dfv) return BOOT_UNKNOWN_CLIENTS; if (!strcasecmp (atom + 1, "reak")) return BREAK; + if (!strcasecmp (atom + 1, "illing")) + return BILLING; break; case 'c': if (!strcasecmp (atom + 1, "heck")) @@ -479,6 +481,8 @@ static int intern (atom, dfv) case 'l': if (!strcasecmp (atom + 1, "ease")) return LEASE; + if (!strcasecmp (atom + 1, "imit")) + return LIMIT; break; case 'm': if (!strcasecmp (atom + 1, "ax-lease-time"))