diff options
author | julian <julian@FreeBSD.org> | 2001-02-22 17:14:36 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 2001-02-22 17:14:36 +0000 |
commit | e658f358fdbe8295147158c5d6385aea1a1fc6e7 (patch) | |
tree | fa7be4a313614951b264ebdc147049a32e655560 /sys/modules | |
parent | f07ed9620d3edd69e2dc4b608fd9534821d89776 (diff) | |
download | FreeBSD-src-e658f358fdbe8295147158c5d6385aea1a1fc6e7.zip FreeBSD-src-e658f358fdbe8295147158c5d6385aea1a1fc6e7.tar.gz |
Add a 'splitter' node to separate a bidirectional
packet flow into two unidirectional flows.
Part of a suite of nodes developed for packet flow control.
More to follow as I have time to port them to 5.x or
as others do so. The ipfw node will be the hardest..
Submitted by: "Vitaly V. Belekhov" <vitaly@riss-telecom.ru>
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/netgraph/split/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/modules/netgraph/split/Makefile b/sys/modules/netgraph/split/Makefile new file mode 100644 index 0000000..90226c0 --- /dev/null +++ b/sys/modules/netgraph/split/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ +# + +KMOD= ng_split +SRCS= ng_split.c +NOMAN= + +.include <bsd.kmod.mk> |