diff options
Diffstat (limited to 'networking/udhcp/README')
-rw-r--r-- | networking/udhcp/README | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/networking/udhcp/README b/networking/udhcp/README index 5f4bb78a8..eddb24be7 100644 --- a/networking/udhcp/README +++ b/networking/udhcp/README | |||
@@ -11,19 +11,22 @@ compile time options | |||
11 | 11 | ||
12 | The Makefile contains three of the compile time options: | 12 | The Makefile contains three of the compile time options: |
13 | 13 | ||
14 | DEBUG: If DEBUG is defined, udhcpd will output extra debugging | 14 | UDHCP_DEBUG: If UDHCP_DEBUG is defined, udhcpd will output extra |
15 | output, compile with -g, and not fork to the background when run. | 15 | debugging output, compile with -g, and not fork to the background when |
16 | SYSLOG: If SYSLOG is defined, udhcpd will log all its messages | 16 | run. |
17 | syslog, otherwise, it will attempt to log them to stdout. | 17 | UDHCP_SYSLOG: If UDHCP_SYSLOG is defined, udhcpd will log all its |
18 | messages syslog, otherwise, it will attempt to log them to stdout. | ||
18 | 19 | ||
19 | COMBINED_BINARY: If COMBINED_BINARY is define, one binary, udhcpd, | 20 | COMBINED_BINARY: If COMBINED_BINARY is define, one binary, udhcpd, |
20 | is created. If called as udhcpd, the dhcp server will be started. | 21 | is created. If called as udhcpd, the dhcp server will be started. |
21 | If called as udhcpc, the dhcp client will be started. | 22 | If called as udhcpc, the dhcp client will be started. |
22 | 23 | ||
23 | dhcpd.h contains the other two compile time options: | 24 | dhcpd.h contains the other three compile time options: |
24 | 25 | ||
25 | LEASE_TIME: The default lease time if not specified in the config | 26 | LEASE_TIME: The default lease time if not specified in the config |
26 | file. | 27 | file. |
28 | |||
29 | LEASES_FILE: The default file for storing leases. | ||
27 | 30 | ||
28 | DHCPD_CONFIG_FILE: The defualt config file to use. | 31 | DHCPD_CONFIG_FILE: The defualt config file to use. |
29 | 32 | ||