aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/static_leases.h
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/static_leases.h')
-rw-r--r--networking/udhcp/static_leases.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/networking/udhcp/static_leases.h b/networking/udhcp/static_leases.h
deleted file mode 100644
index d06520b23..000000000
--- a/networking/udhcp/static_leases.h
+++ /dev/null
@@ -1,25 +0,0 @@
1/* static_leases.h */
2#ifndef _STATIC_LEASES_H
3#define _STATIC_LEASES_H
4
5#include "dhcpd.h"
6
7/* Config file will pass static lease info to this function which will add it
8 * to a data structure that can be searched later */
9int addStaticLease(struct static_lease **lease_struct, uint8_t *mac, uint32_t *ip);
10
11/* Check to see if a mac has an associated static lease */
12uint32_t getIpByMac(struct static_lease *lease_struct, void *arg);
13
14/* Check to see if an ip is reserved as a static ip */
15uint32_t reservedIp(struct static_lease *lease_struct, uint32_t ip);
16
17#ifdef UDHCP_DEBUG
18/* Print out static leases just to check what's going on */
19void printStaticLeases(struct static_lease **lease_struct);
20#endif
21
22#endif
23
24
25