From bfb49a193954e666cb8b3fa67e9feb76ce673a6f Mon Sep 17 00:00:00 2001 From: brooks Date: Tue, 7 Jun 2005 04:13:52 +0000 Subject: We don't support BPF write filters at this time. Submitted by: sam --- sbin/dhclient/bpf.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sbin/dhclient') diff --git a/sbin/dhclient/bpf.c b/sbin/dhclient/bpf.c index 131a88f..7482c95 100644 --- a/sbin/dhclient/bpf.c +++ b/sbin/dhclient/bpf.c @@ -1,4 +1,5 @@ /* $OpenBSD: bpf.c,v 1.13 2004/05/05 14:28:58 deraadt Exp $ */ +/* $FreeBSD$ */ /* BPF socket interface code, originally contributed by Archie Cobbs. */ @@ -220,6 +221,7 @@ if_register_receive(struct interface_info *info) if (ioctl(info->rfdesc, BIOCSETF, &p) < 0) error("Can't install packet filter program: %m"); +#ifdef BIOCSETWF /* Set up the bpf write filter program structure. */ p.bf_len = dhcp_bpf_wfilter_len; p.bf_insns = dhcp_bpf_wfilter; @@ -232,6 +234,7 @@ if_register_receive(struct interface_info *info) if (ioctl(info->rfdesc, BIOCLOCK, NULL) < 0) error("Cannot lock bpf"); +#endif } ssize_t -- cgit v1.1