Deleted Added
sdiff udiff text old ( 302408 ) new ( 369186 )
full compact
1/*
2 * Copyright (C) 2012 by Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
5 *
6 * @(#)ip_fil.h 1.35 6/5/96
7 * $Id$
8 */

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

20
21
22struct fr_info;
23struct frentry;
24struct ip;
25struct ipstate;
26
27
28#if defined(__STDC__) || defined(__GNUC__) || defined(_AIX51)
29# define SIOCADSCA _IOWR('r', 60, struct ipscan *)
30# define SIOCRMSCA _IOWR('r', 61, struct ipscan *)
31# define SIOCGSCST _IOWR('r', 62, struct ipscan *)
32#else
33# define SIOCADSCA _IOWR(r, 60, struct ipscan *)
34# define SIOCRMSCA _IOWR(r, 61, struct ipscan *)
35# define SIOCGSCST _IOWR(r, 62, struct ipscan *)
36#endif
37
38struct action {
39 int act_val; /* what to do */
40 struct in_addr act_ip; /* redirect IP# */
41 u_short act_port; /* redirect port number */
42 int act_else; /* what to do */
43 struct in_addr act_eip; /* redirect IP# */
44 u_short act_eport; /* redirect port number */

--- 62 unchanged lines hidden ---