- spelling
[oweals/busybox.git] / networking / udhcp / dhcpc.h
index 7145cbd8b826cb2e02db46ff9e114a2886e696be..7c93f42326fa0d4d1c3a7a87b0480b2c64f9c8f3 100644 (file)
@@ -2,9 +2,7 @@
 #ifndef _DHCPC_H
 #define _DHCPC_H
 
-#define DEFAULT_SCRIPT  "/usr/share/udhcpc/default.script"
-
-/* allow libbb_udhcp.h to redefine DEFAULT_SCRIPT */
+/* grab define DEFAULT_SCRIPT */
 #include "libbb_udhcp.h"
 
 #define INIT_SELECTING 0
@@ -25,10 +23,14 @@ struct client_config_t {
        char *interface;                /* The name of the interface to use */
        char *pidfile;                  /* Optionally store the process ID */
        char *script;                   /* User script to run at dhcp events */
-       unsigned char *clientid;        /* Optional client id to use */
-       unsigned char *hostname;        /* Optional hostname to use */
+       uint8_t *clientid;              /* Optional client id to use */
+       uint8_t *vendorclass;           /* Optional vendor class-id to use */
+       uint8_t *hostname;              /* Optional hostname to use */
+       uint8_t *fqdn;                  /* Optional fully qualified domain name to use */
        int ifindex;                    /* Index number of the interface to use */
-       unsigned char arp[6];           /* Our arp address */
+       int retries;                    /* Max number of request packets */        
+       int timeout;                    /* Number of seconds to try to get a lease */
+       uint8_t arp[6];                 /* Our arp address */
 };
 
 extern struct client_config_t client_config;