summaryrefslogtreecommitdiffstats
path: root/sys/net/if_ppp.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-10-18 00:46:10 +0000
committerpeter <peter@FreeBSD.org>1997-10-18 00:46:10 +0000
commit78e8c3f4e136edc7d6fe93676d0c76ccf8c39ddf (patch)
tree4dfc69d839e6b1422c7442b42bc0906bf61e1114 /sys/net/if_ppp.c
parentdeb21eac019d212ef94d2abdf7bdef1d554947b5 (diff)
downloadFreeBSD-src-78e8c3f4e136edc7d6fe93676d0c76ccf8c39ddf.zip
FreeBSD-src-78e8c3f4e136edc7d6fe93676d0c76ccf8c39ddf.tar.gz
Back out the `PPP_FILTER => NBPFILTER' changes
Diffstat (limited to 'sys/net/if_ppp.c')
-rw-r--r--sys/net/if_ppp.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c
index fa80407..220ca79 100644
--- a/sys/net/if_ppp.c
+++ b/sys/net/if_ppp.c
@@ -69,7 +69,7 @@
* Paul Mackerras (paulus@cs.anu.edu.au).
*/
-/* $Id: if_ppp.c,v 1.45 1997/10/10 11:57:40 peter Exp $ */
+/* $Id: if_ppp.c,v 1.46 1997/10/17 00:12:38 brian Exp $ */
/* from if_sl.c,v 1.11 84/10/04 12:54:47 rick Exp */
/* from NetBSD: if_ppp.c,v 1.15.2.2 1994/07/28 05:17:58 cgd Exp */
@@ -80,6 +80,7 @@
#define VJC
#define PPP_COMPRESS
+#define PPP_FILTER
#include <sys/param.h>
#include <sys/systm.h>
@@ -96,7 +97,7 @@
#include <net/if_types.h>
#include <net/netisr.h>
#include <net/route.h>
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
#include <net/bpf.h>
#endif
@@ -313,7 +314,7 @@ pppdealloc(sc)
sc->sc_xc_state = NULL;
sc->sc_rc_state = NULL;
#endif /* PPP_COMPRESS */
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
if (sc->sc_pass_filt.bf_insns != 0) {
FREE(sc->sc_pass_filt.bf_insns, M_DEVBUF);
sc->sc_pass_filt.bf_insns = 0;
@@ -324,7 +325,7 @@ pppdealloc(sc)
sc->sc_active_filt.bf_insns = 0;
sc->sc_active_filt.bf_len = 0;
}
-#endif /* NBPFILTER */
+#endif /* PPP_FILTER */
#ifdef VJC
if (sc->sc_comp != 0) {
FREE(sc->sc_comp, M_DEVBUF);
@@ -349,11 +350,11 @@ pppioctl(sc, cmd, data, flag, p)
struct compressor **cp;
struct npioctl *npi;
time_t t;
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
struct bpf_program *bp, *nbp;
struct bpf_insn *newcode, *oldcode;
int newcodelen;
-#endif /* NBPFILTER */
+#endif /* PPP_FILTER */
#ifdef PPP_COMPRESS
u_char ccp_option[CCP_MAX_OPTION_LENGTH];
#endif
@@ -509,7 +510,7 @@ pppioctl(sc, cmd, data, flag, p)
splx(s);
break;
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
case PPPIOCSPASS:
case PPPIOCSACTIVE:
nbp = (struct bpf_program *) data;
@@ -794,7 +795,7 @@ pppoutput(ifp, m0, dst, rtp)
}
if ((protocol & 0x8000) == 0) {
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
/*
* Apply the pass and active filters to the packet,
* but only if it is a data packet.
@@ -820,7 +821,7 @@ pppoutput(ifp, m0, dst, rtp)
* Update the time we sent the most recent data packet.
*/
sc->sc_last_sent = time.tv_sec;
-#endif /* NBPFILTER */
+#endif /* PPP_FILTER */
}
#if NBPFILTER > 0
@@ -1431,7 +1432,7 @@ ppp_inproc(sc, m)
m->m_pkthdr.rcvif = ifp;
if ((proto & 0x8000) == 0) {
-#if NBPFILTER > 0
+#ifdef PPP_FILTER
/*
* See whether we want to pass this packet, and
* if it counts as link activity.
@@ -1455,7 +1456,7 @@ ppp_inproc(sc, m)
* Record the time that we received this packet.
*/
sc->sc_last_recv = time.tv_sec;
-#endif /* NBPFILTER */
+#endif /* PPP_FILTER */
}
#if NBPFILTER > 0
OpenPOWER on IntegriCloud