netstatus_proxy_details_t
Proxy details.
Synopsis:
struct netstatus_proxy_details_t {
char * http_proxy_host ;
int http_proxy_port ;
char * https_proxy_host ;
int https_proxy_port ;
char * ftp_proxy_host ;
int ftp_proxy_port ;
char * http_proxy_login_user ;
char * http_proxy_login_password ;
};
Data:
- char * http_proxy_host
- The HTTP proxy host, or NULL if there is no HTTP proxy host.
- int http_proxy_port
- The HTTP proxy port, or 0 if there is no HTTP proxy port.
- char * https_proxy_host
- The HTTPS proxy host, or NULL if there is no HTTPS proxy host.
- int https_proxy_port
- The HTTPS proxy port, or 0 if there is no HTTPS proxy port.
- char * ftp_proxy_host
- The FTP proxy host, or NULL if there is no FTP proxy host.
- int ftp_proxy_port
- The FTP proxy port, or 0 if there is no FTP proxy port.
- char * http_proxy_login_user
- The user to log into the proxy as, or NULL if a login is not required.
- char * http_proxy_login_password
- The password to log into the proxy with, or NULL if a password is not required.
Library:
libbpsDescription:
The netstatus_proxy_details_t structure defines HTTP and FTP proxy details, such as host, port, username, and password.