From: Ted Lemon Date: Thu, 29 Feb 1996 18:26:58 +0000 (+0000) Subject: Add vendor and user class tokens X-Git-Tag: SS960301~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a285e681ea548d7a93e5ea24c828469d15f70ad0;p=thirdparty%2Fdhcp.git Add vendor and user class tokens --- diff --git a/dhctoken.h b/dhctoken.h index ac2639b0b..9a69f2d21 100644 --- a/dhctoken.h +++ b/dhctoken.h @@ -72,8 +72,10 @@ #define NETMASK 279 #define DEFAULT_LEASE_TIME 280 #define MAX_LEASE_TIME 281 +#define VENDOR_CLASS 282 +#define USER_CLASS 283 -#define LAST_TOKEN MAX_LEASE_TIME +#define LAST_TOKEN USER_CLASS #define is_identifier(x) ((x) >= FIRST_TOKEN && \ (x) <= LAST_TOKEN && \ diff --git a/includes/dhctoken.h b/includes/dhctoken.h index ac2639b0b..9a69f2d21 100644 --- a/includes/dhctoken.h +++ b/includes/dhctoken.h @@ -72,8 +72,10 @@ #define NETMASK 279 #define DEFAULT_LEASE_TIME 280 #define MAX_LEASE_TIME 281 +#define VENDOR_CLASS 282 +#define USER_CLASS 283 -#define LAST_TOKEN MAX_LEASE_TIME +#define LAST_TOKEN USER_CLASS #define is_identifier(x) ((x) >= FIRST_TOKEN && \ (x) <= LAST_TOKEN && \