[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
[0028]
[0029]
[0030]
[0031]
[0032]
[0033]
[0034]
[0035]
[0036]
[0037]
[0038]
[0039]
[0040]
[0041]
[0042]
/*****************************************************************************/
/*
                                 Proxy.h

08-AUG-1998  MGD  initial
*/
/*****************************************************************************/

#ifndef PROXYTUNNEL_H_LOADED
#define PROXYTUNNEL_H_LOADED 1

/* tunnel functionality (any changes must be reflected in accounting struct) */
#define PROXY_TUNNEL_CONNECT   1   /* in service plus out proxy */
#define PROXY_TUNNEL_FIREWALL  2   /* in service plus out proxy */
#define PROXY_TUNNEL_HTTP      3   /* out proxy only */
#define PROXY_TUNNEL_HTTPS     4   /* out proxy only */
#define PROXY_TUNNEL_RAW    5   /* in service plus out proxy */

/***********************/
/* function prototypes */
/***********************/

/* forward references */
typedef struct ProxyTaskStruct PROXY_TASK;
typedef struct RequestStruct REQUEST_STRUCT;

ProxyTunnelChainConnect (PROXY_TASK*);
ProxyTunnelChainConnectAst (PROXY_TASK*);
ProxyTunnelConnectResponseAst (REQUEST_STRUCT*);
ProxyTunnelLogicalName (PROXY_TASK*);
ProxyTunnelRequestResponseAst (PROXY_TASK*);
ProxyTunnelNetReadAst (REQUEST_STRUCT*);
ProxyTunnelNetWriteAst (REQUEST_STRUCT*);
ProxyTunnelReadAst (PROXY_TASK*);
ProxyTunnelRebuildRequest (PROXY_TASK*);
ProxyTunnelRequestParse (REQUEST_STRUCT*);
ProxyTunnelWriteAst (PROXY_TASK*);

#endif /* PROXYTUNNEL_H_LOADED */

/*****************************************************************************/