summaryrefslogtreecommitdiffhomepage
path: root/src/odhcpd.h
diff options
context:
space:
mode:
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 97d2113..9535e75 100644
--- a/src/odhcpd.h
+++ b/src/odhcpd.h
@@ -189,6 +189,7 @@ struct dhcp_assignment {
unsigned int flags;
uint32_t leasetime;
char *hostname;
+ char *reqopts;
#define hwaddr mac
uint8_t mac[6];
@@ -318,6 +319,7 @@ inline static void free_assignment(struct dhcp_assignment *a)
a->dhcp_free_cb(a);
free(a->hostname);
+ free(a->reqopts);
free(a);
}