summaryrefslogtreecommitdiffstats
path: root/gnu/usr.sbin/isdn/ispy
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-02-15 00:46:26 +0000
committerjkh <jkh@FreeBSD.org>1995-02-15 00:46:26 +0000
commit0cb129cc755064f31fb42abf2c721a8605381511 (patch)
tree87521af8f33d69817699aec072374bf2d3734e3e /gnu/usr.sbin/isdn/ispy
downloadFreeBSD-src-0cb129cc755064f31fb42abf2c721a8605381511.zip
FreeBSD-src-0cb129cc755064f31fb42abf2c721a8605381511.tar.gz
Import the ISDN userland utilities. Just about ready to start shaking
this baby out in earnest..
Diffstat (limited to 'gnu/usr.sbin/isdn/ispy')
-rw-r--r--gnu/usr.sbin/isdn/ispy/Makefile5
-rw-r--r--gnu/usr.sbin/isdn/ispy/ispy.c43
2 files changed, 48 insertions, 0 deletions
diff --git a/gnu/usr.sbin/isdn/ispy/Makefile b/gnu/usr.sbin/isdn/ispy/Makefile
new file mode 100644
index 0000000..7ac4a9a
--- /dev/null
+++ b/gnu/usr.sbin/isdn/ispy/Makefile
@@ -0,0 +1,5 @@
+PROG= ispy
+NOMAN= yes
+CFLAGS+= -DBSD -O
+
+.include <bsd.prog.mk>
diff --git a/gnu/usr.sbin/isdn/ispy/ispy.c b/gnu/usr.sbin/isdn/ispy/ispy.c
new file mode 100644
index 0000000..5c2ac5a
--- /dev/null
+++ b/gnu/usr.sbin/isdn/ispy/ispy.c
@@ -0,0 +1,43 @@
+static char rcsid[] = "@(#)$Id: ispy.c,v 1.2 1995/01/25 13:41:55 jkr Exp jkr $";
+/*******************************************************************************
+ * II - Version 0.1 $Revision: 1.2 $ $State: Exp $
+ *
+ * Copyright 1994 Dietmar Friede
+ *******************************************************************************
+ * Bug reports, patches, comments, suggestions should be sent to:
+ *
+ * jkr@saarlink.de or jkrause@guug.de
+ *
+ *******************************************************************************
+ * $Log: ispy.c,v $
+ *
+ ******************************************************************************/
+
+#include <sys/types.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <time.h>
+#include <sys/ioctl.h>
+#include <sys/file.h>
+#include "../../../../sys/gnu/i386/isa/niccyreg.h"
+
+void
+main(int argc, char **argv)
+{
+ int f;
+ int v;
+
+ if ((f = open("/dev/nic0", O_RDWR)) < 0)
+ {
+ perror("open");
+ exit(1);
+ }
+ v = 0;
+ if (argc > 1)
+ v = atoi(argv[1]);
+
+ if (ioctl(f, NICCY_SPY, &v) < 0)
+ {
+ perror("ioctl");
+ }
+}
OpenPOWER on IntegriCloud