summaryrefslogtreecommitdiffstats
path: root/dyndhcpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'dyndhcpd.h')
-rw-r--r--dyndhcpd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/dyndhcpd.h b/dyndhcpd.h
index 96a7cf3..1f01abf 100644
--- a/dyndhcpd.h
+++ b/dyndhcpd.h
@@ -29,6 +29,15 @@ struct address {
char c[INET_ADDRSTRLEN];
};
+struct network {
+ struct address address;
+ struct address netaddress;
+ struct address netmask;
+ struct address broadcast;
+ struct address minhost;
+ struct address maxhost;
+};
+
/*** replace ***/
int replace(char ** config, size_t *length, const char ** tmp,
const char * template, const char * value);