diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-03-17 00:17:53 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-03-17 00:17:53 +0000 |
commit | 50d46e61c9a41d972be8c22426b295998ea7b6fe (patch) | |
tree | 14a217d8e8ef86314cecd11018b060dceafb944f /usr.sbin | |
parent | a5448f5ca7c4a0cc0f492de0157ac0c6826322e3 (diff) |
option 252 is generally used to specify an autoproxy-script on a subnet.
ok krw@ henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/dhcpd/tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/tables.c b/usr.sbin/dhcpd/tables.c index d396d1e7b22..456d0e4d6ce 100644 --- a/usr.sbin/dhcpd/tables.c +++ b/usr.sbin/dhcpd/tables.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tables.c,v 1.5 2007/10/29 16:51:02 krw Exp $ */ +/* $OpenBSD: tables.c,v 1.6 2008/03/17 00:17:52 dlg Exp $ */ /* Tables of information... */ @@ -314,7 +314,7 @@ struct option dhcp_options[256] = { { "option-249", "X", &dhcp_universe, 249 }, { "option-250", "X", &dhcp_universe, 250 }, { "option-251", "X", &dhcp_universe, 251 }, - { "option-252", "X", &dhcp_universe, 252 }, + { "autoproxy-script", "t", &dhcp_universe, 252 }, { "option-253", "X", &dhcp_universe, 253 }, { "option-254", "X", &dhcp_universe, 254 }, { "option-end", "e", &dhcp_universe, 255 }, |