2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Prototypes for new dhcp protocol functions; add extra least expiry type

This commit is contained in:
Ted Lemon
1996-02-26 01:57:06 +00:00
parent 37d100d176
commit 8f5e2ec897
2 changed files with 14 additions and 0 deletions

View File

@@ -106,6 +106,7 @@ struct lease {
struct lease *prev;
struct iaddr ip_addr;
TIME starts, ends, timestamp;
TIME offered_expiry;
unsigned char *uid;
int uid_len;
struct host_decl *host;
@@ -230,6 +231,12 @@ int tree_evaluate PROTO ((struct tree_cache *));
/* dhcp.c */
void dhcp PROTO ((struct packet *));
void dhcpdiscover PROTO ((struct packet *));
void dhcprequest PROTO ((struct packet *));
void dhcprelease PROTO ((struct packet *));
void nak_lease PROTO ((struct packet *));
void ack_lease PROTO ((struct packet *, struct lease *, unsigned char, TIME));
struct lease *find_lease PROTO ((struct packet *));
/* bootp.c */
void bootp PROTO ((struct packet *));