LmProxy

LmProxy — API for the proxy support in Loudmouth

Synopsis


Description

Use this together with an LmConnection to get the connection to use connect through a proxy. Example of how to use the LmProxy API.

1
2
3
4
5
6
7
8
LmConnection *connection;
LmProxy      *proxy;
connection = lm_connection_new ("myserver");
proxy = lm_proxy_new_with_server (LM_PROXY_TYPE_HTTP,
                  "myproxyserver",
                  8080);
lm_connection_set_proxy (connection, proxy);
...

Details