diff options
author | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-22 18:59:13 +0000 |
---|---|---|
committer | pgf <pgf@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-22 18:59:13 +0000 |
commit | 5758af5455f8a5c4da90bc4967c707a1d0ee56d5 (patch) | |
tree | f5924f07643c8712acb65115bd50a7aa9ddb3603 /networking/udhcp/dhcpc.h | |
parent | 9d9d270cc039d91a0fd56c43ac7dd5a9c942267e (diff) | |
download | busybox-w32-5758af5455f8a5c4da90bc4967c707a1d0ee56d5.tar.gz busybox-w32-5758af5455f8a5c4da90bc4967c707a1d0ee56d5.tar.bz2 busybox-w32-5758af5455f8a5c4da90bc4967c707a1d0ee56d5.zip |
add support for setting the dhcp vendor class option (option 60).
udhcpc now has a -V (--vendorclass), which will replace the default
"udhcpRELEASE" string in this option.
git-svn-id: svn://busybox.net/trunk/busybox@11582 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | networking/udhcp/dhcpc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index 77c180944..4cc1c4cc1 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h | |||
@@ -26,6 +26,7 @@ struct client_config_t { | |||
26 | char *pidfile; /* Optionally store the process ID */ | 26 | char *pidfile; /* Optionally store the process ID */ |
27 | char *script; /* User script to run at dhcp events */ | 27 | char *script; /* User script to run at dhcp events */ |
28 | uint8_t *clientid; /* Optional client id to use */ | 28 | uint8_t *clientid; /* Optional client id to use */ |
29 | uint8_t *vendorclass; /* Optional vendor class-id to use */ | ||
29 | uint8_t *hostname; /* Optional hostname to use */ | 30 | uint8_t *hostname; /* Optional hostname to use */ |
30 | uint8_t *fqdn; /* Optional fully qualified domain name to use */ | 31 | uint8_t *fqdn; /* Optional fully qualified domain name to use */ |
31 | int ifindex; /* Index number of the interface to use */ | 32 | int ifindex; /* Index number of the interface to use */ |