Deleted Added
sdiff udiff text old ( 366282 ) new ( 369186 )
full compact
1/* $FreeBSD: stable/11/sys/contrib/ipfilter/netinet/ip_proxy.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 * $FreeBSD: stable/11/sys/contrib/ipfilter/netinet/ip_proxy.h 369186 2021-01-31 04:32:46Z cy $
9 * Id: ip_proxy.h,v 2.31.2.2 2005/03/12 19:33:48 darrenr Exp
10 */
11
12#ifndef __IP_PROXY_H__
13#define __IP_PROXY_H__
14
15#ifndef SOLARIS
16# if defined(sun) && defined(__SVR4)
17# define SOLARIS 1
18# else
19# define SOLARIS 0
20# endif
21#endif
22
23#define SIOCPROXY _IOWR('r', 64, struct ap_control)
24
25#ifndef APR_LABELLEN
26#define APR_LABELLEN 16
27#endif
28#define AP_SESS_SIZE 53
29
30struct nat;
31struct ipnat;

--- 432 unchanged lines hidden ---