aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-01-30 23:45:53 +0000
committerEric Andersen <andersen@codepoet.org>2004-01-30 23:45:53 +0000
commitad95373efcd7eaa4d641a7a821e5b05fb2d31e1d (patch)
tree59f5094313c8ee69e48f632a217835a8bb36bda6 /networking/udhcp/dhcpc.h
parent1a834be1ce792252d55b090ee806a466fe9ac4fa (diff)
downloadbusybox-w32-ad95373efcd7eaa4d641a7a821e5b05fb2d31e1d.tar.gz
busybox-w32-ad95373efcd7eaa4d641a7a821e5b05fb2d31e1d.tar.bz2
busybox-w32-ad95373efcd7eaa4d641a7a821e5b05fb2d31e1d.zip
Use standard C99 types
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r--networking/udhcp/dhcpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h
index 7145cbd8b..9c4aa95f7 100644
--- a/networking/udhcp/dhcpc.h
+++ b/networking/udhcp/dhcpc.h
@@ -25,10 +25,10 @@ struct client_config_t {
25 char *interface; /* The name of the interface to use */ 25 char *interface; /* The name of the interface to use */
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 unsigned char *clientid; /* Optional client id to use */ 28 uint8_t *clientid; /* Optional client id to use */
29 unsigned char *hostname; /* Optional hostname to use */ 29 uint8_t *hostname; /* Optional hostname to use */
30 int ifindex; /* Index number of the interface to use */ 30 int ifindex; /* Index number of the interface to use */
31 unsigned char arp[6]; /* Our arp address */ 31 uint8_t arp[6]; /* Our arp address */
32}; 32};
33 33
34extern struct client_config_t client_config; 34extern struct client_config_t client_config;