Specifies that all subsequent HTTP requests be directed to the specified proxy server.
int web_set_proxy( const char *proxy_host:port );
int object.set_proxy( String proxy_host:port );
This function returns LR_PASS (0) on success, and LR_FAIL (1) on failure.
The following argument(s) can be parameterized using standard parameterization: proxy_host:port
The web_set_proxy function is a service function that specifies that all subsequent HTTP requests be directed to the specified Proxy Server. To submit HTTP requests directly to the server (that is, without using a proxy server), use the web_set_proxy function to pass an empty string ("") as an argument.
This function is supported for all Web scripts.