?? static_leases.h
字號:
/* 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
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -