socat/xio-proxy.h

34 lines
1.1 KiB
C
Raw Normal View History

2008-01-28 21:37:16 +00:00
/* source: xio-proxy.h */
/* Copyright Gerhard Rieger and contributors (see file CHANGES) */
2008-01-27 12:00:08 +00:00
/* Published under the GNU General Public License V.2, see file COPYING */
#ifndef __xio_proxy_h_included
#define __xio_proxy_h_included 1
struct proxyvars {
bool ignorecr;
2023-06-17 19:30:37 +00:00
char *version;
2008-01-27 12:00:08 +00:00
bool doresolve;
char *authstring;
2020-12-26 15:04:50 +00:00
char *authfile;
2008-01-27 12:00:08 +00:00
char *targetaddr; /* name/address of host, in malloced string */
uint16_t targetport;
} ;
extern const struct optdesc opt_proxyport;
extern const struct optdesc opt_ignorecr;
2023-06-17 19:30:37 +00:00
extern const struct optdesc opt_http_version;
2008-01-27 12:00:08 +00:00
extern const struct optdesc opt_proxy_resolve;
extern const struct optdesc opt_proxy_authorization;
2020-12-26 15:04:50 +00:00
extern const struct optdesc opt_proxy_authorization_file;
2008-01-27 12:00:08 +00:00
extern const struct addrdesc xioaddr_proxy_connect;
2008-01-27 12:00:08 +00:00
extern int _xioopen_proxy_prepare(struct proxyvars *proxyvars, struct opt *opts, const char *targetname, const char *targetport, const int ai_flags[2]);
2008-01-27 12:00:08 +00:00
int _xioopen_proxy_connect(struct single *xfd,
struct proxyvars *proxyvars,
int level);
#endif /* !defined(__xio_proxy_h_included) */