Mike Frysinger 5eda15566a move out of subdir 19 年之前
..
AUTHORS 5eda15566a move out of subdir 19 年之前
COPYING 5eda15566a move out of subdir 19 年之前
ChangeLog 5eda15566a move out of subdir 19 年之前
Config.in 5eda15566a move out of subdir 19 年之前
Makefile 5eda15566a move out of subdir 19 年之前
Makefile.in 5eda15566a move out of subdir 19 年之前
README 5eda15566a move out of subdir 19 年之前
README.dumpleases 5eda15566a move out of subdir 19 年之前
README.udhcpc 5eda15566a move out of subdir 19 年之前
README.udhcpd 5eda15566a move out of subdir 19 年之前
TODO 5eda15566a move out of subdir 19 年之前
arpping.c 5eda15566a move out of subdir 19 年之前
arpping.h 5eda15566a move out of subdir 19 年之前
clientpacket.c 5eda15566a move out of subdir 19 年之前
clientpacket.h 5eda15566a move out of subdir 19 年之前
clientsocket.c 5eda15566a move out of subdir 19 年之前
clientsocket.h 5eda15566a move out of subdir 19 年之前
common.c 5eda15566a move out of subdir 19 年之前
common.h 5eda15566a move out of subdir 19 年之前
dhcpc.c 5eda15566a move out of subdir 19 年之前
dhcpc.h 5eda15566a move out of subdir 19 年之前
dhcpd.c 5eda15566a move out of subdir 19 年之前
dhcpd.h 5eda15566a move out of subdir 19 年之前
dumpleases.c 5eda15566a move out of subdir 19 年之前
files.c 5eda15566a move out of subdir 19 年之前
files.h 5eda15566a move out of subdir 19 年之前
frontend.c 5eda15566a move out of subdir 19 年之前
leases.c 5eda15566a move out of subdir 19 年之前
leases.h 5eda15566a move out of subdir 19 年之前
libbb_udhcp.h 5eda15566a move out of subdir 19 年之前
options.c 5eda15566a move out of subdir 19 年之前
options.h 5eda15566a move out of subdir 19 年之前
packet.c 5eda15566a move out of subdir 19 年之前
packet.h 5eda15566a move out of subdir 19 年之前
pidfile.c 5eda15566a move out of subdir 19 年之前
pidfile.h 5eda15566a move out of subdir 19 年之前
script.c 5eda15566a move out of subdir 19 年之前
script.h 5eda15566a move out of subdir 19 年之前
serverpacket.c 5eda15566a move out of subdir 19 年之前
serverpacket.h 5eda15566a move out of subdir 19 年之前
signalpipe.c 5eda15566a move out of subdir 19 年之前
signalpipe.h 5eda15566a move out of subdir 19 年之前
socket.c 5eda15566a move out of subdir 19 年之前
socket.h 5eda15566a move out of subdir 19 年之前
static_leases.c 5eda15566a move out of subdir 19 年之前
static_leases.h 5eda15566a move out of subdir 19 年之前
version.h 5eda15566a move out of subdir 19 年之前

README

udhcp server/client package readme
-------------------------

The udhcp server/client package is primarily geared towards embedded
systems. It does however, strive to be fully functional, and RFC
compliant.


compile time options
-------------------

The Makefile contains three of the compile time options:

UDHCP_DEBUG: If UDHCP_DEBUG is defined, udhcpd will output extra
debugging output, compile with -g, and not fork to the background when
run.
UDHCP_SYSLOG: If UDHCP_SYSLOG is defined, udhcpd will log all its
messages syslog, otherwise, it will attempt to log them to stdout.

COMBINED_BINARY: If COMBINED_BINARY is define, one binary, udhcpd,
is created. If called as udhcpd, the dhcp server will be started.
If called as udhcpc, the dhcp client will be started.

dhcpd.h contains the other three compile time options:

LEASE_TIME: The default lease time if not specified in the config
file.

LEASES_FILE: The default file for storing leases.

DHCPD_CONFIG_FILE: The defualt config file to use.

options.c contains a set of dhcp options for the client:

name[10]: The name of the option as it will appear in scripts

flags: The type of option, as well as if it will be requested
by the client (OPTION_REQ)

code: The DHCP code for this option


busybox drop-in
--------------
udhcp is now a drop-in component for busybox (http://busybox.net).
To update busybox to the latest revision, simply do a:

cp *.[ch] README AUTHORS COPYING ChangeLog TODO \
/networking/udhcp

The only two files udhcp does not provide are config.in and
Makefile.in, so these may need to be updated from time to time.