]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add TRANSMISSION keyword
authorTed Lemon <source@isc.org>
Thu, 25 Jan 2001 08:20:24 +0000 (08:20 +0000)
committerTed Lemon <source@isc.org>
Thu, 25 Jan 2001 08:20:24 +0000 (08:20 +0000)
common/conflex.c
includes/dhctoken.h

index df7a0625176700f7144bc2113c40c315fde6e13d..d0c4812dd8d33335162000f0ec713159d59c8938 100644 (file)
@@ -43,7 +43,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: conflex.c,v 1.86 2001/01/16 22:50:02 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: conflex.c,v 1.87 2001/01/25 08:20:21 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -977,6 +977,8 @@ static enum dhcp_token intern (atom, dfv)
                        return TSTP;
                if (!strcasecmp (atom + 1, "sfp"))
                        return TSFP;
+               if (!strcasecmp (atom + 1, "ransmission"))
+                       return TRANSMISSION;
                break;
              case 'u':
                if (!strcasecmp (atom + 1, "nset"))
index 7dab55c7893545b6eacb10a279836df6b82cfc8b..f9e2360f5f85f9c750be2f9e1345a94252b65b81 100644 (file)
@@ -303,7 +303,8 @@ enum dhcp_token {
        REBINDING = 599,
        RECONTACT_INTERVAL = 600,
        CLIENT_UPDATES = 601,
-       TOKEN_NEW
+       TOKEN_NEW = 601,
+       TRANSMISSION = 602
 };
 
 #define is_identifier(x)       ((x) >= FIRST_TOKEN &&  \