diff options
Diffstat (limited to 'networking/udhcp/options.h')
-rw-r--r-- | networking/udhcp/options.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/networking/udhcp/options.h b/networking/udhcp/options.h index 8c80485be..9e624318f 100644 --- a/networking/udhcp/options.h +++ b/networking/udhcp/options.h | |||
@@ -19,11 +19,13 @@ enum { | |||
19 | OPTION_U16, | 19 | OPTION_U16, |
20 | OPTION_S16, | 20 | OPTION_S16, |
21 | OPTION_U32, | 21 | OPTION_U32, |
22 | OPTION_S32 | 22 | OPTION_S32, |
23 | }; | 23 | }; |
24 | 24 | ||
25 | #define OPTION_REQ 0x10 /* have the client request this option */ | 25 | /* Client requests this option by default */ |
26 | #define OPTION_LIST 0x20 /* There can be a list of 1 or more of these */ | 26 | #define OPTION_REQ 0x10 |
27 | /* There can be a list of 1 or more of these */ | ||
28 | #define OPTION_LIST 0x20 | ||
27 | 29 | ||
28 | /*****************************************************************/ | 30 | /*****************************************************************/ |
29 | /* Do not modify below here unless you know what you are doing!! */ | 31 | /* Do not modify below here unless you know what you are doing!! */ |