aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/dhcpd.h
diff options
context:
space:
mode:
authorTim Riker <tim@rikers.org>2006-01-25 00:08:53 +0000
committerTim Riker <tim@rikers.org>2006-01-25 00:08:53 +0000
commitc1ef7bdd8d002ae0889efcf883d0e1b7faa938d4 (patch)
tree5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /networking/udhcp/dhcpd.h
parentf64ff682a3d58dbb627e760e6fe1ec21d9ccdf61 (diff)
downloadbusybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.gz
busybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.bz2
busybox-w32-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.zip
just whitespace
Diffstat (limited to 'networking/udhcp/dhcpd.h')
-rw-r--r--networking/udhcp/dhcpd.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/networking/udhcp/dhcpd.h b/networking/udhcp/dhcpd.h
index 65c8348bf..a060002cd 100644
--- a/networking/udhcp/dhcpd.h
+++ b/networking/udhcp/dhcpd.h
@@ -108,23 +108,23 @@ struct static_lease {
108 108
109struct server_config_t { 109struct server_config_t {
110 uint32_t server; /* Our IP, in network order */ 110 uint32_t server; /* Our IP, in network order */
111 uint32_t start; /* Start address of leases, network order */ 111 uint32_t start; /* Start address of leases, network order */
112 uint32_t end; /* End of leases, network order */ 112 uint32_t end; /* End of leases, network order */
113 struct option_set *options; /* List of DHCP options loaded from the config file */ 113 struct option_set *options; /* List of DHCP options loaded from the config file */
114 char *interface; /* The name of the interface to use */ 114 char *interface; /* The name of the interface to use */
115 int ifindex; /* Index number of the interface to use */ 115 int ifindex; /* Index number of the interface to use */
116 uint8_t arp[6]; /* Our arp address */ 116 uint8_t arp[6]; /* Our arp address */
117 unsigned long lease; /* lease time in seconds (host order) */ 117 unsigned long lease; /* lease time in seconds (host order) */
118 unsigned long max_leases; /* maximum number of leases (including reserved address) */ 118 unsigned long max_leases; /* maximum number of leases (including reserved address) */
119 char remaining; /* should the lease file be interpreted as lease time remaining, or 119 char remaining; /* should the lease file be interpreted as lease time remaining, or
120 * as the time the lease expires */ 120 * as the time the lease expires */
121 unsigned long auto_time; /* how long should udhcpd wait before writing a config file. 121 unsigned long auto_time; /* how long should udhcpd wait before writing a config file.
122 * if this is zero, it will only write one on SIGUSR1 */ 122 * if this is zero, it will only write one on SIGUSR1 */
123 unsigned long decline_time; /* how long an address is reserved if a client returns a 123 unsigned long decline_time; /* how long an address is reserved if a client returns a
124 * decline message */ 124 * decline message */
125 unsigned long conflict_time; /* how long an arp conflict offender is leased for */ 125 unsigned long conflict_time; /* how long an arp conflict offender is leased for */
126 unsigned long offer_time; /* how long an offered address is reserved */ 126 unsigned long offer_time; /* how long an offered address is reserved */
127 unsigned long min_lease; /* minimum lease a client can request*/ 127 unsigned long min_lease; /* minimum lease a client can request*/
128 char *lease_file; 128 char *lease_file;
129 char *pidfile; 129 char *pidfile;
130 char *notify_file; /* What to run whenever leases are written */ 130 char *notify_file; /* What to run whenever leases are written */