diff options
author | Steven Barth <steven@midlink.org> | 2013-10-23 10:26:40 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-10-23 10:26:40 +0200 |
commit | 16cee36ff3cf1895f87368709dabd3ffd5f24e4f (patch) | |
tree | 0b87ee4d91ce1111a5ac24b674b746aca52ac268 /src/odhcpd.h | |
parent | e418a237611a5d2ad6dfa8a814b560350345b2f7 (diff) |
Fix cleanup of interfaces
Diffstat (limited to 'src/odhcpd.h')
-rw-r--r-- | src/odhcpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odhcpd.h b/src/odhcpd.h index 5ae6a39..9949253 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -104,7 +104,6 @@ struct interface { int ifindex; char ifname[IF_NAMESIZE]; char name[IF_NAMESIZE]; - bool inuse; // Runtime data struct uloop_timeout timer_rs; @@ -124,6 +123,7 @@ struct interface { enum odhcpd_mode dhcpv4; // Config + bool inuse; bool external; bool master; bool ignore; |