diff options
author | Paul Fox | 2005-09-22 19:03:24 +0000 |
---|---|---|
committer | Paul Fox | 2005-09-22 19:03:24 +0000 |
commit | b6f71645f452572640a0529fb091f71cf8a30c3e (patch) | |
tree | 37b9519c4a5cc1199dfb1563d61447d32cff3a60 /networking/udhcp/files.h | |
parent | 28de951b022d39516de271ce0ba53560aa3c5555 (diff) | |
download | busybox-b6f71645f452572640a0529fb091f71cf8a30c3e.zip busybox-b6f71645f452572640a0529fb091f71cf8a30c3e.tar.gz |
move a couple of functions from common code (options.c) to udhcpd private
code (files.c) to make udhcpc a little smaller.
Diffstat (limited to 'networking/udhcp/files.h')
-rw-r--r-- | networking/udhcp/files.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/networking/udhcp/files.h b/networking/udhcp/files.h index 279738a..4af61b0 100644 --- a/networking/udhcp/files.h +++ b/networking/udhcp/files.h @@ -14,4 +14,7 @@ int read_config(const char *file); void write_leases(void); void read_leases(const char *file); +struct option_set *find_option(struct option_set *opt_list, char code); +void attach_option(struct option_set **opt_list, struct dhcp_option *option, char *buffer, int length); + #endif |