summaryrefslogtreecommitdiff
path: root/common/upf.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2000-09-01 23:03:39 +0000
committerTed Lemon <source@isc.org>2000-09-01 23:03:39 +0000
commit5cefe5e556a4d29eaa50d87b5157adb365b0cc8f (patch)
tree0c1c6dbe98f79be178418442651a0d60a994bbc4 /common/upf.c
parentda411127514925955d868378ec1293168c8a72ae (diff)
downloadisc-dhcp-5cefe5e556a4d29eaa50d87b5157adb365b0cc8f.tar.gz
- Do what people expect when they don't declare the subnet to which an
interface is attached.
Diffstat (limited to 'common/upf.c')
-rw-r--r--common/upf.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/common/upf.c b/common/upf.c
index 78ac5b3c..a737d57a 100644
--- a/common/upf.c
+++ b/common/upf.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: upf.c,v 1.20 2000/07/27 09:02:38 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n";
+"$Id: upf.c,v 1.21 2000/09/01 23:03:39 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -358,6 +358,12 @@ int can_receive_unicast_unconfigured (ip)
return 1;
}
+int supports_multiple_interfaces (ip)
+ struct interface_info *ip;
+{
+ return 1;
+}
+
void maybe_setup_fallback ()
{
isc_result_t status;