aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/netgraph
diff options
context:
space:
mode:
authorBenno Rice <benno@FreeBSD.org>2004-03-08 10:54:35 +0000
committerBenno Rice <benno@FreeBSD.org>2004-03-08 10:54:35 +0000
commitbde778e9f205d94af7dfa73e44e0155da51d6c97 (patch)
treebce0cb3ba1781ea849342ab5c2301d5b4807c904 /sys/modules/netgraph
parenta062038267932240a1b9631959fe5e266f03e1cc (diff)
downloadsrc-bde778e9f205d94af7dfa73e44e0155da51d6c97.tar.gz
src-bde778e9f205d94af7dfa73e44e0155da51d6c97.zip
Add a netgraph node to handle ATM LLC encapsulation. This currently handles
ethernet (tested) and FDDI (not tested). The main use for this is on ADSL (or other ATM) connections where bridged ethernet is used, PPPoE being a prime example. There is no manual page as yet, I will write one shortly. Reviewed by: harti
Notes
Notes: svn path=/head/; revision=126742
Diffstat (limited to 'sys/modules/netgraph')
-rw-r--r--sys/modules/netgraph/atmllc/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/modules/netgraph/atmllc/Makefile b/sys/modules/netgraph/atmllc/Makefile
new file mode 100644
index 000000000000..fd47b5c02958
--- /dev/null
+++ b/sys/modules/netgraph/atmllc/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= ng_atmllc
+SRCS= ng_atmllc.c
+
+.include <bsd.kmod.mk>