Deleted Added
full compact
1/*
2 * (C)opyright 1995-1998 Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
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>

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

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

--- 268 unchanged lines hidden ---