diff options
author | Ted Lemon <source@isc.org> | 2000-09-01 23:03:39 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 2000-09-01 23:03:39 +0000 |
commit | 5cefe5e556a4d29eaa50d87b5157adb365b0cc8f (patch) | |
tree | 0c1c6dbe98f79be178418442651a0d60a994bbc4 /common/lpf.c | |
parent | da411127514925955d868378ec1293168c8a72ae (diff) | |
download | isc-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/lpf.c')
-rw-r--r-- | common/lpf.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/common/lpf.c b/common/lpf.c index 21a2fa93..ebafb592 100644 --- a/common/lpf.c +++ b/common/lpf.c @@ -37,7 +37,7 @@ #ifndef lint static char copyright[] = -"$Id: lpf.c,v 1.26 2000/07/27 09:02:33 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: lpf.c,v 1.27 2000/09/01 23:03:35 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -388,6 +388,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; |