Deleted Added
full compact
ip_state.h (145522) ip_state.h (153876)
1/* $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_state.h 145522 2005-04-25 18:43:14Z darrenr $ */
1/* $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_state.h 153876 2005-12-30 11:32:23Z guido $ */
2
3/*
4 * Copyright (C) 1995-2001 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 * @(#)ip_state.h 1.3 1/12/96 (C) 1995 Darren Reed
2
3/*
4 * Copyright (C) 1995-2001 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 *
8 * @(#)ip_state.h 1.3 1/12/96 (C) 1995 Darren Reed
9 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_state.h 145522 2005-04-25 18:43:14Z darrenr $
9 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_state.h 153876 2005-12-30 11:32:23Z guido $
10 * Id: ip_state.h,v 2.68.2.3 2005/03/03 14:24:11 darrenr Exp
11 */
12#ifndef __IP_STATE_H__
13#define __IP_STATE_H__
14
10 * Id: ip_state.h,v 2.68.2.3 2005/03/03 14:24:11 darrenr Exp
11 */
12#ifndef __IP_STATE_H__
13#define __IP_STATE_H__
14
15#if defined(__STDC__) || defined(__GNUC__)
15#if defined(__STDC__) || defined(__GNUC__) || defined(_AIX51)
16# define SIOCDELST _IOW('r', 61, struct ipfobj)
17#else
18# define SIOCDELST _IOW(r, 61, struct ipfobj)
19#endif
20
21struct ipscan;
22
23#ifndef IPSTATE_SIZE

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

56 u_short is_sumd[2];
57 i6addr_t is_src;
58 i6addr_t is_dst;
59 u_int is_pass;
60 u_char is_p; /* Protocol */
61 u_char is_v;
62 u_32_t is_hv;
63 u_32_t is_tag;
16# define SIOCDELST _IOW('r', 61, struct ipfobj)
17#else
18# define SIOCDELST _IOW(r, 61, struct ipfobj)
19#endif
20
21struct ipscan;
22
23#ifndef IPSTATE_SIZE

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

56 u_short is_sumd[2];
57 i6addr_t is_src;
58 i6addr_t is_dst;
59 u_int is_pass;
60 u_char is_p; /* Protocol */
61 u_char is_v;
62 u_32_t is_hv;
63 u_32_t is_tag;
64 u_32_t is_opt; /* packet options set */
65 u_32_t is_optmsk; /* " " mask */
64 u_32_t is_opt[2]; /* packet options set */
65 u_32_t is_optmsk[2]; /* " " mask */
66 u_short is_sec; /* security options set */
67 u_short is_secmsk; /* " " mask */
68 u_short is_auth; /* authentication options set */
69 u_short is_authmsk; /* " " mask */
70 union {
71 icmpinfo_t is_ics;
72 tcpinfo_t is_ts;
73 udpinfo_t is_us;

--- 189 unchanged lines hidden ---
66 u_short is_sec; /* security options set */
67 u_short is_secmsk; /* " " mask */
68 u_short is_auth; /* authentication options set */
69 u_short is_authmsk; /* " " mask */
70 union {
71 icmpinfo_t is_ics;
72 tcpinfo_t is_ts;
73 udpinfo_t is_us;

--- 189 unchanged lines hidden ---