Deleted Added
full compact
ip_proxy.h (92685) ip_proxy.h (102520)
1/*
2 * Copyright (C) 1997-2001 by Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
5 *
6 * $Id: ip_proxy.h,v 2.8.2.4 2000/12/02 00:15:03 darrenr Exp $
1/*
2 * Copyright (C) 1997-2001 by Darren Reed.
3 *
4 * See the IPFILTER.LICENCE file for details on licencing.
5 *
6 * $Id: ip_proxy.h,v 2.8.2.4 2000/12/02 00:15:03 darrenr Exp $
7 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_proxy.h 92685 2002-03-19 11:44:16Z darrenr $
7 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_proxy.h 102520 2002-08-28 13:41:36Z darrenr $
8 */
9
10#ifndef __IP_PROXY_H__
11#define __IP_PROXY_H__
12
13#ifndef SOLARIS
14#define SOLARIS (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
15#endif

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

91
92#define FTP_BUFSZ 160
93/*
94 * For the ftp proxy.
95 */
96typedef struct ftpside {
97 char *ftps_rptr;
98 char *ftps_wptr;
8 */
9
10#ifndef __IP_PROXY_H__
11#define __IP_PROXY_H__
12
13#ifndef SOLARIS
14#define SOLARIS (defined(sun) && (defined(__svr4__) || defined(__SVR4)))
15#endif

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

91
92#define FTP_BUFSZ 160
93/*
94 * For the ftp proxy.
95 */
96typedef struct ftpside {
97 char *ftps_rptr;
98 char *ftps_wptr;
99 u_32_t ftps_seq;
99 u_32_t ftps_seq[2];
100 u_32_t ftps_len;
101 int ftps_junk;
102 int ftps_cmds;
103 char ftps_buf[FTP_BUFSZ];
104} ftpside_t;
105
106typedef struct ftpinfo {
107 int ftp_passok;

--- 67 unchanged lines hidden ---
100 u_32_t ftps_len;
101 int ftps_junk;
102 int ftps_cmds;
103 char ftps_buf[FTP_BUFSZ];
104} ftpside_t;
105
106typedef struct ftpinfo {
107 int ftp_passok;

--- 67 unchanged lines hidden ---