summaryrefslogtreecommitdiff
path: root/common/lpf.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1999-03-13 18:56:47 +0000
committerTed Lemon <source@isc.org>1999-03-13 18:56:47 +0000
commit21d21e917248f264b73b75d236f7a557715b74e2 (patch)
tree23ac01b6a690e743a16064903ec649c909dbb2bb /common/lpf.c
parent319db03d896a0d0daf8ed25114ca2ab3354c873f (diff)
downloadisc-dhcp-21d21e917248f264b73b75d236f7a557715b74e2.tar.gz
Add interface argument to can_*().
Diffstat (limited to 'common/lpf.c')
-rw-r--r--common/lpf.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/common/lpf.c b/common/lpf.c
index dcaee002..bbcfaea1 100644
--- a/common/lpf.c
+++ b/common/lpf.c
@@ -43,7 +43,7 @@
#ifndef lint
static char copyright[] =
-"$Id: lpf.c,v 1.5 1999/03/13 18:53:15 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
+"$Id: lpf.c,v 1.6 1999/03/13 18:56:47 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
@@ -275,12 +275,14 @@ ssize_t receive_packet (interface, buf, len, from, hfrom)
return length;
}
-int can_unicast_without_arp ()
+int can_unicast_without_arp (ip)
+ struct interface_info *ip;
{
return 1;
}
-int can_receive_unicast_unconfigured ()
+int can_receive_unicast_unconfigured (ip)
+ struct interface_info *ip;
{
return 1;
}