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