diff options
author | Can Erkin Acar <canacar@cvs.openbsd.org> | 2004-11-28 23:39:46 +0000 |
---|---|---|
committer | Can Erkin Acar <canacar@cvs.openbsd.org> | 2004-11-28 23:39:46 +0000 |
commit | 21bc148fb19bda21c314e0e1f9b34eac9a13cc8a (patch) | |
tree | a94aa3b32a2e9452fd7636a18a0d69f0b47c8525 /sys/net/netisr_dispatch.h | |
parent | 9b02e944d8a1968fe39ff654b9f987ed838daed2 (diff) |
In kernel pppoe client, a simple IPv4 only implementation.
Initial porting from NetBSD by David Berghoff.
Modified/simplified to match our sppp implementation.
ok deraadt@
Diffstat (limited to 'sys/net/netisr_dispatch.h')
-rw-r--r-- | sys/net/netisr_dispatch.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/net/netisr_dispatch.h b/sys/net/netisr_dispatch.h index 6e34c89180d..3be10f991fe 100644 --- a/sys/net/netisr_dispatch.h +++ b/sys/net/netisr_dispatch.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr_dispatch.h,v 1.6 2004/10/17 20:17:30 grange Exp $ */ +/* $OpenBSD: netisr_dispatch.h,v 1.7 2004/11/28 23:39:45 canacar Exp $ */ /* $NetBSD: netisr_dispatch.h,v 1.2 2000/07/02 04:40:47 cgd Exp $ */ /* @@ -25,6 +25,7 @@ #include "ether.h" #include "ppp.h" #include "bridge.h" +#include "pppoe.h" #endif /* @@ -65,3 +66,6 @@ #if NBRIDGE > 0 DONETISR(NETISR_BRIDGE,bridgeintr); #endif +#if NPPPOE > 0 + DONETISR(NETISR_PPPOE,pppoeintr); +#endif |