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

Add can_receive_unicast_unconfigured

This commit is contained in:
Ted Lemon
1999-03-13 18:53:15 +00:00
parent 7d3bc735ce
commit b547818bbf
6 changed files with 37 additions and 6 deletions

View File

@@ -50,7 +50,7 @@
#ifndef lint
static char copyright[] =
"$Id: socket.c,v 1.31 1999/02/25 23:30:36 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
"$Id: socket.c,v 1.32 1999/03/13 18:53:15 mellon Exp $ Copyright (c) 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -269,6 +269,12 @@ int can_unicast_without_arp ()
return 0;
}
/* On many stacks, we should return 1 here. */
int can_receive_unicast_unconfigured ()
{
return 0;
}
/* If we have SO_BINDTODEVICE, set up a fallback interface; otherwise,
do not. */