dhcp_try_rfc1048() is not used any more

Remove unused function.

Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D13382
This commit is contained in:
Toomas Soome 2017-12-06 06:49:53 +00:00
parent cb37fc82b1
commit 78fdf7f396
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=326616
2 changed files with 0 additions and 13 deletions

View File

@ -355,17 +355,6 @@ bootprecv(struct iodesc *d, void **pkt, void **payload, time_t tleft)
return (-1);
}
int
dhcp_try_rfc1048(u_char *cp, u_int len)
{
expected_dhcpmsgtype = DHCPACK;
if (bcmp(vm_rfc1048, cp, sizeof(vm_rfc1048)) == 0) {
return (vend_rfc1048(cp, len));
}
return (-1);
}
static int
vend_rfc1048(u_char *cp, u_int len)
{

View File

@ -146,6 +146,4 @@ struct cmu_vend {
extern struct bootp *bootp_response;
extern size_t bootp_response_size;
int dhcp_try_rfc1048(u_char *cp, u_int len);
#endif /* _BOOTP_H_ */