Deleted Added
full compact
1/*
2 * Copyright (C) 1997-2000 by Darren Reed.
2 * Copyright (C) 1997-2001 by Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
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 $
9 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_proxy.h 72006 2001-02-04 14:26:56Z darrenr $
7 * $FreeBSD: head/sys/contrib/ipfilter/netinet/ip_proxy.h 80482 2001-07-28 11:58:26Z 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

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

96 char *ftps_wptr;
97 u_32_t ftps_seq;
98 u_32_t ftps_len;
99 int ftps_junk;
100 char ftps_buf[FTP_BUFSZ];
101} ftpside_t;
102
103typedef struct ftpinfo {
106 u_int ftp_passok;
104 int ftp_passok;
105 int ftp_incok;
106 ftpside_t ftp_side[2];
107} ftpinfo_t;
108
109/*
110 * Real audio proxy structure and #defines
111 */
112typedef struct {
113 int rap_seenpna;

--- 43 unchanged lines hidden ---