summaryrefslogtreecommitdiffstats
path: root/gnu/usr.sbin/isdn/ispy/ispy.c
blob: 5c2ac5a7477b4bcc903aafd4d254aeaf5382e23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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