1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-10 06:06:33 +00:00

Option proxy-authorization-file

This commit is contained in:
Gerhard Rieger 2020-12-26 16:04:50 +01:00
parent 50bdb453dd
commit 1c7ddfef73
7 changed files with 129 additions and 2 deletions

View file

@ -10,6 +10,7 @@ struct proxyvars {
bool ignorecr;
bool doresolve;
char *authstring;
char *authfile;
char *targetaddr; /* name/address of host, in malloced string */
uint16_t targetport;
} ;
@ -18,6 +19,7 @@ extern const struct optdesc opt_proxyport;
extern const struct optdesc opt_ignorecr;
extern const struct optdesc opt_proxy_resolve;
extern const struct optdesc opt_proxy_authorization;
extern const struct optdesc opt_proxy_authorization_file;
extern const struct addrdesc addr_proxy_connect;