Deleted Added
sdiff udiff text old ( 305138 ) new ( 369186 )
full compact
1/* $FreeBSD: stable/11/contrib/ipfilter/opts.h 369186 2021-01-31 04:32:46Z cy $ */
2
3/*
4 * Copyright (C) 2012 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 * $Id$
9 */

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

49#define OPT_DONTOPEN 0x10000000
50#define OPT_PURGE 0x20000000
51
52#define OPT_STAT OPT_FRSTATES
53#define OPT_LIST OPT_SHOWLIST
54
55
56#ifndef __P
57# define __P(x) x
58#endif
59
60#if defined(sun) && !SOLARIS
61# define STRERROR(x) sys_errlist[x]
62extern char *sys_errlist[];
63#else
64# define STRERROR(x) strerror(x)
65#endif
66
67extern int opts;
68
69#endif /* __OPTS_H__ */