Deleted Added
sdiff udiff text old ( 344833 ) new ( 363769 )
full compact
1/* $FreeBSD: stable/11/contrib/ipfilter/ipsend/iptest.c 363769 2020-08-02 04:25:36Z cy $ */
2
3/*
4 * ipsend.c (C) 1995-1998 Darren Reed
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 */
9#if !defined(lint)

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

29
30extern char *optarg;
31extern int optind;
32
33char options[68];
34# ifdef sun
35char default_device[] = "le0";
36# else
37char default_device[] = "lan0";
38# endif
39
40static void usage __P((char *));
41int main __P((int, char **));
42
43
44static void usage(prog)
45 char *prog;

--- 152 unchanged lines hidden ---