summaryrefslogtreecommitdiffstats
path: root/dhcpcd.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-08-18 12:43:05 +0000
committerRoy Marples <roy@marples.name>2008-08-18 12:43:05 +0000
commitcc45fbd76ed54efda7538a2eb8e56dd714346467 (patch)
tree1e01216167ac00bee224572d4218a45f273b3cd1 /dhcpcd.h
parentbac03ede3de43969143a5bd314af10f17003980a (diff)
downloaddhcpcd-cc45fbd76ed54efda7538a2eb8e56dd714346467.tar.xz
The require directive now requires that the required options are present in each DHCP message. A few variables and functions have also been renamed to make this part more readable.
Diffstat (limited to 'dhcpcd.h')
-rw-r--r--dhcpcd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dhcpcd.h b/dhcpcd.h
index dc7cff41..1cd2b5d5 100644
--- a/dhcpcd.h
+++ b/dhcpcd.h
@@ -68,7 +68,8 @@
struct options {
char interface[IF_NAMESIZE];
int metric;
- uint8_t reqmask[256 / 8];
+ uint8_t requestmask[256 / 8];
+ uint8_t requiremask[256 / 8];
uint8_t nomask[256 / 8];
uint32_t leasetime;
time_t timeout;