Deleted Added
sdiff udiff text old ( 53024 ) new ( 80486 )
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.
7 *
8 * The author of this software makes no garuntee about the
9 * performance of this package or its suitability to fulfill any purpose.
10 *
11 */
12#include <stdio.h>
13#include <fcntl.h>
14#include <signal.h>

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

33#ifdef linux
34#include <linux/sockios.h>
35#include "tcpip.h"
36#endif
37#include "ipsd.h"
38
39#ifndef lint
40static 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 $";
42#endif
43
44extern char *optarg;
45extern int optind;
46
47#define NPORTS 21
48
49u_short defports[NPORTS] = {

--- 268 unchanged lines hidden ---