whitespace cleanup
[oweals/busybox.git] / networking / udhcp / dhcpc.h
index 9c4aa95f7b19b0a749aa5891b9d2ffe053261852..3dff11ab0691baa7df1c964000e0c54baf40f99d 100644 (file)
@@ -1,10 +1,9 @@
+/* vi: set sw=4 ts=4: */
 /* dhcpc.h */
 #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
@@ -26,8 +25,12 @@ struct client_config_t {
        char *pidfile;                  /* Optionally store the process ID */
        char *script;                   /* User script to run at dhcp events */
        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 */
+       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 */
 };