aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/static_leases.h
blob: b23bbcfff1398d5959a9b45dc1f1d5489d705d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* vi: set sw=4 ts=4: */
/* static_leases.h */
#ifndef _STATIC_LEASES_H
#define _STATIC_LEASES_H

#include "dhcpd.h"

/* Config file will pass static lease info to this function which will add it
 * to a data structure that can be searched later */
int addStaticLease(struct static_lease **lease_struct, uint8_t *mac, uint32_t *ip);

/* Check to see if a mac has an associated static lease */
uint32_t getIpByMac(struct static_lease *lease_struct, void *arg);

/* Check to see if an ip is reserved as a static ip */
uint32_t reservedIp(struct static_lease *lease_struct, uint32_t ip);

/* Print out static leases just to check what's going on (debug code) */
void printStaticLeases(struct static_lease **lease_struct);

#endif