summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-06-18 08:26:22 +0000
committerderaadt <deraadt@openbsd.org>2001-06-18 08:26:22 +0000
commit5735ce8889a1630b3767482d7a548193e297cc70 (patch)
treeabbffc9ae8d60fcb9710603b6eb2881ee70c993e
parentbye bye ipf (diff)
downloadwireguard-openbsd-5735ce8889a1630b3767482d7a548193e297cc70.tar.xz
wireguard-openbsd-5735ce8889a1630b3767482d7a548193e297cc70.zip
bye bye
-rw-r--r--lkm/ipl/Makefile10
-rw-r--r--lkm/ipl/stub.c28
2 files changed, 0 insertions, 38 deletions
diff --git a/lkm/ipl/Makefile b/lkm/ipl/Makefile
deleted file mode 100644
index 5dda96bef79..00000000000
--- a/lkm/ipl/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-# $OpenBSD: Makefile,v 1.2 1996/06/02 16:50:01 mickey Exp $
-
-LKM= ipl
-SRCS+= stub.c ip_fil.c fil.c ip_nat.c ip_frag.c ip_state.c
-CFLAGS+= -DIPFILTER_LKM
-NOMAN= noman
-
-.PATH: ${.CURDIR}/../../sys/netinet
-
-.include <bsd.lkm.mk>
diff --git a/lkm/ipl/stub.c b/lkm/ipl/stub.c
deleted file mode 100644
index 5f60038e864..00000000000
--- a/lkm/ipl/stub.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* $OpenBSD: stub.c,v 1.3 1997/11/23 05:19:06 mickey Exp $ */
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/conf.h>
-#include <sys/kernel.h>
-#include <sys/exec.h>
-#include <sys/lkm.h>
-
-static struct cdevsw ipl_cdevsw = cdev_gen_ipf(1,ipl);
-MOD_DEV("ipl", LM_DT_CHAR, -1, &ipl_cdevsw );
-
-static int
-lkm_load( lkmtp, cmd )
- struct lkm_table *lkmtp;
- int cmd;
-{
- return 0;
-}
-
-int
-ipl(lkmtp, cmd, ver)
- struct lkm_table *lkmtp;
- int cmd;
- int ver;
-{
- DISPATCH(lkmtp, cmd, ver, lkm_load, lkm_nofunc, lkm_nofunc)
-}