diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2009-09-01 08:42:32 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2009-09-01 08:42:32 +0000 |
commit | 8ab63b16084c59dddb1a8207a5a629f51a1459d3 (patch) | |
tree | 63f55292fa713a24f45db98192ae13e6b79ce3b2 /usr.sbin/dhcpd/dhctoken.h | |
parent | 4e6a8645d5ace03e41e59440cb998cf28ad137f1 (diff) |
Echo back the Relay Agent Information option if present (RFC 3046).
Also add support for the "ipsec-tunnel" hardware type as described in
RFC 3456.
ok henning@ krw@ (but needs more testing from others)
Diffstat (limited to 'usr.sbin/dhcpd/dhctoken.h')
-rw-r--r-- | usr.sbin/dhcpd/dhctoken.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/dhcpd/dhctoken.h b/usr.sbin/dhcpd/dhctoken.h index 4b9f35ddf65..5cb5766e33a 100644 --- a/usr.sbin/dhcpd/dhctoken.h +++ b/usr.sbin/dhcpd/dhctoken.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhctoken.h,v 1.5 2006/12/18 19:05:01 stevesk Exp $ */ +/* $OpenBSD: dhctoken.h,v 1.6 2009/09/01 08:42:31 reyk Exp $ */ /* Tokens for config file lexer and parser. */ @@ -92,6 +92,7 @@ #define TOK_AUTHORITATIVE 333 #define TOK_TOKEN_NOT 334 #define TOK_ALWAYS_REPLY_RFC1048 335 +#define TOK_IPSEC_TUNNEL 336 #define is_identifier(x) ((x) >= TOK_FIRST_TOKEN && \ (x) != TOK_STRING && \ |