From 61fb48930f45aa536584b2047f9e703186e8f69f Mon Sep 17 00:00:00 2001 From: Russ Dill Date: Mon, 14 Oct 2002 21:41:28 +0000 Subject: added full udhcp integration --- networking/udhcp/files.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 networking/udhcp/files.h (limited to 'networking/udhcp/files.h') diff --git a/networking/udhcp/files.h b/networking/udhcp/files.h new file mode 100644 index 000000000..1f2638fe9 --- /dev/null +++ b/networking/udhcp/files.h @@ -0,0 +1,17 @@ +/* files.h */ +#ifndef _FILES_H +#define _FILES_H + +struct config_keyword { + char keyword[14]; + int (*handler)(char *line, void *var); + void *var; + char def[30]; +}; + + +int read_config(char *file); +void write_leases(void); +void read_leases(char *file); + +#endif -- cgit v1.2.3