Deleted Added
sdiff udiff text old ( 53024 ) new ( 80486 )
full compact
1/*
2 * (C)opyright 1995-1998 Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
5 *
6 * The author of this software makes no garuntee about the
7 * performance of this package or its suitability to fulfill any purpose.
8 *
9 */
10#include <stdio.h>
11#include <fcntl.h>
12#include <signal.h>

--- 17 unchanged lines hidden (view full) ---

30#ifdef linux
31#include <linux/sockios.h>
32#include "tcpip.h"
33#endif
34#include "ipsd.h"
35
36#ifndef lint
37static const char sccsid[] = "@(#)ipsd.c 1.3 12/3/95 (C)1995 Darren Reed";
38static const char rcsid[] = "@(#)$Id: ipsd.c,v 2.1.4.1 2001/06/26 10:43:21 darrenr Exp $";
39#endif
40
41extern char *optarg;
42extern int optind;
43
44#ifdef linux
45char default_device[] = "eth0";
46#else

--- 251 unchanged lines hidden ---