aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/common.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-04-04 15:28:49 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-04 15:28:49 +0200
commitc03602baa483ed07230c88075121e0f56a4c0428 (patch)
tree4185c42418e667ce8aae969faf198bc858f24071 /networking/udhcp/common.h
parent9c0ea86caa2170aee0638b9a8120aeb0f66ca5be (diff)
downloadbusybox-c03602baa483ed07230c88075121e0f56a4c0428.tar.gz
udhcp: s/dhcp_option/dhcp_optflag/g
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r--networking/udhcp/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h
index 28e34718a..7dd1f119a 100644
--- a/networking/udhcp/common.h
+++ b/networking/udhcp/common.h
@@ -157,7 +157,7 @@ enum {
#define DHCP_MINTYPE DHCPDISCOVER
#define DHCP_MAXTYPE DHCPINFORM
-struct dhcp_option {
+struct dhcp_optflag {
uint8_t flags;
uint8_t code;
};
@@ -167,7 +167,7 @@ struct option_set {
struct option_set *next;
};
-extern const struct dhcp_option dhcp_options[];
+extern const struct dhcp_optflag dhcp_optflags[];
extern const char dhcp_option_strings[];
extern const uint8_t dhcp_option_lengths[];