blob: d06520b232a5d4938eddf8871767d07e81586aba [file] [log] [blame]
Eric Andersenabf58d62004-10-08 08:49:26 +00001/* 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