struct 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 ;
};

Since:

BlackBerry 10.0.0

Data:

char * http_proxy_host
The HTTP proxy host, or NULL if there is no HTTP proxy host.

Since: BlackBerry 10.0.0

int http_proxy_port
The HTTP proxy port, or 0 if there is no HTTP proxy port.

Since: BlackBerry 10.0.0

char * https_proxy_host
The HTTPS proxy host, or NULL if there is no HTTPS proxy host.

Since: BlackBerry 10.0.0

int https_proxy_port
The HTTPS proxy port, or 0 if there is no HTTPS proxy port.

Since: BlackBerry 10.0.0

char * ftp_proxy_host
The FTP proxy host, or NULL if there is no FTP proxy host.

Since: BlackBerry 10.0.0

int ftp_proxy_port
The FTP proxy port, or 0 if there is no FTP proxy port.

Since: BlackBerry 10.0.0

char * http_proxy_login_user
The user to log into the proxy as, or NULL if a login is not required.

Since: BlackBerry 10.0.0

char * http_proxy_login_password
The password to log into the proxy with, or NULL if a password is not required.

Since: BlackBerry 10.0.0

Library:

libbps (For the qcc command, use the -l bps option to link against this library)

Description:

The netstatus_proxy_details_t structure defines HTTP and FTP proxy details, such as host, port, username, and password.