summaryrefslogtreecommitdiffhomepage
path: root/src/odhcpd.h
diff options
context:
space:
mode:
authorsbyx <steven@midlink.org>2014-08-12 14:59:36 +0200
committersbyx <steven@midlink.org>2014-08-12 14:59:36 +0200
commitde90ff1b27ef8e41c819d40d80f0fd6d8be86ded (patch)
treea2095d9dec4fb67c6de995e47c9664013bbd2aec /src/odhcpd.h
parent634d9fe9142f62b7b2e7647ef88d6606e54ab155 (diff)
parentf2cda6c15b55c80be8739f492a8ee7b4dbd1cf52 (diff)
Merge pull request #20 from mehlis/implement-dhcp4-router-config
dhcpv4: implement router configuration option
Diffstat (limited to 'src/odhcpd.h')
-rw-r--r--src/odhcpd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/odhcpd.h b/src/odhcpd.h
index b2b38dc..4c0c28c 100644
--- a/src/odhcpd.h
+++ b/src/odhcpd.h
@@ -147,6 +147,8 @@ struct interface {
// DHCPv4
struct in_addr dhcpv4_start;
struct in_addr dhcpv4_end;
+ struct in_addr *dhcpv4_router;
+ size_t dhcpv4_router_cnt;
struct in_addr *dhcpv4_dns;
size_t dhcpv4_dns_cnt;
uint32_t dhcpv4_leasetime;