aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpc.h
diff options
context:
space:
mode:
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;