3 * Purple is the legal property of its developers, whose names are too numerous
4 * to list here. Please refer to the COPYRIGHT file distributed with this
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 #ifndef _PURPLE_PROXY_H_
23 #define _PURPLE_PROXY_H_
26 * @section_id: libpurple-proxy
27 * @short_description: <filename>proxy.h</filename>
33 #include "eventloop.h"
37 * @PURPLE_PROXY_USE_GLOBAL: Use the global proxy information.
38 * @PURPLE_PROXY_NONE: No proxy.
39 * @PURPLE_PROXY_HTTP: HTTP proxy.
40 * @PURPLE_PROXY_SOCKS4: SOCKS 4 proxy.
41 * @PURPLE_PROXY_SOCKS5: SOCKS 5 proxy.
42 * @PURPLE_PROXY_USE_ENVVAR: Use environmental settings.
43 * @PURPLE_PROXY_TOR: Use a Tor proxy (SOCKS 5 really).
45 * A type of proxy connection.
49 PURPLE_PROXY_USE_GLOBAL
= -1,
50 PURPLE_PROXY_NONE
= 0,
54 PURPLE_PROXY_USE_ENVVAR
,
62 * Information on proxy settings.
64 typedef struct _PurpleProxyInfo PurpleProxyInfo
;
66 typedef struct _PurpleProxyConnectData PurpleProxyConnectData
;
68 typedef void (*PurpleProxyConnectFunction
)(gpointer data
, gint source
, const gchar
*error_message
);
75 /**************************************************************************/
76 /* Proxy structure API */
77 /**************************************************************************/
80 * purple_proxy_info_new:
82 * Creates a proxy information structure.
84 * Returns: The proxy information structure.
86 PurpleProxyInfo
*purple_proxy_info_new(void);
89 * purple_proxy_info_destroy:
90 * @info: The proxy information structure to destroy.
92 * Destroys a proxy information structure.
94 void purple_proxy_info_destroy(PurpleProxyInfo
*info
);
97 * purple_proxy_info_set_proxy_type:
98 * @info: The proxy information.
99 * @type: The proxy type.
101 * Sets the type of proxy.
103 void purple_proxy_info_set_proxy_type(PurpleProxyInfo
*info
, PurpleProxyType type
);
106 * purple_proxy_info_set_host:
107 * @info: The proxy information.
110 * Sets the proxy host.
112 void purple_proxy_info_set_host(PurpleProxyInfo
*info
, const char *host
);
115 * purple_proxy_info_set_port:
116 * @info: The proxy information.
119 * Sets the proxy port.
121 void purple_proxy_info_set_port(PurpleProxyInfo
*info
, int port
);
124 * purple_proxy_info_set_username:
125 * @info: The proxy information.
126 * @username: The username.
128 * Sets the proxy username.
130 void purple_proxy_info_set_username(PurpleProxyInfo
*info
, const char *username
);
133 * purple_proxy_info_set_password:
134 * @info: The proxy information.
135 * @password: The password.
137 * Sets the proxy password.
139 void purple_proxy_info_set_password(PurpleProxyInfo
*info
, const char *password
);
142 * purple_proxy_info_get_proxy_type:
143 * @info: The proxy information.
145 * Returns the proxy's type.
149 PurpleProxyType
purple_proxy_info_get_proxy_type(const PurpleProxyInfo
*info
);
152 * purple_proxy_info_get_host:
153 * @info: The proxy information.
155 * Returns the proxy's host.
159 const char *purple_proxy_info_get_host(const PurpleProxyInfo
*info
);
162 * purple_proxy_info_get_port:
163 * @info: The proxy information.
165 * Returns the proxy's port.
169 int purple_proxy_info_get_port(const PurpleProxyInfo
*info
);
172 * purple_proxy_info_get_username:
173 * @info: The proxy information.
175 * Returns the proxy's username.
177 * Returns: The username.
179 const char *purple_proxy_info_get_username(const PurpleProxyInfo
*info
);
182 * purple_proxy_info_get_password:
183 * @info: The proxy information.
185 * Returns the proxy's password.
187 * Returns: The password.
189 const char *purple_proxy_info_get_password(const PurpleProxyInfo
*info
);
191 /**************************************************************************/
192 /* Global Proxy API */
193 /**************************************************************************/
196 * purple_global_proxy_get_info:
198 * Returns purple's global proxy information.
200 * Returns: The global proxy information.
202 PurpleProxyInfo
*purple_global_proxy_get_info(void);
205 * purple_global_proxy_set_info:
206 * @info: The proxy information.
208 * Set purple's global proxy information.
210 void purple_global_proxy_set_info(PurpleProxyInfo
*info
);
212 /**************************************************************************/
214 /**************************************************************************/
217 * purple_proxy_get_handle:
219 * Returns the proxy subsystem handle.
221 * Returns: The proxy subsystem handle.
223 void *purple_proxy_get_handle(void);
228 * Initializes the proxy subsystem.
230 void purple_proxy_init(void);
233 * purple_proxy_uninit:
235 * Uninitializes the proxy subsystem.
237 void purple_proxy_uninit(void);
240 * purple_proxy_get_setup:
241 * @account: The account for which the configuration is needed.
243 * Returns configuration of a proxy.
245 * Returns: The configuration of a proxy.
247 PurpleProxyInfo
*purple_proxy_get_setup(PurpleAccount
*account
);
250 * purple_proxy_connect:
251 * @handle: A handle that should be associated with this
252 * connection attempt. The handle can be used
253 * to cancel the connection attempt using the
254 * purple_proxy_connect_cancel_with_handle()
256 * @account: The account making the connection.
257 * @host: The destination host.
258 * @port: The destination port.
259 * @connect_cb: (scope call): The function to call when the connection is
260 * established. If the connection failed then
261 * fd will be -1 and error message will be set
262 * to something descriptive (hopefully).
263 * @data: User-defined data.
265 * Makes a connection to the specified host and port. Note that this
266 * function name can be misleading--although it is called "proxy
267 * connect," it is used for establishing any outgoing TCP connection,
268 * whether through a proxy or not.
270 * Returns: NULL if there was an error, or a reference to an
271 * opaque data structure that can be used to cancel
272 * the pending connection, if needed.
274 PurpleProxyConnectData
*purple_proxy_connect(void *handle
,
275 PurpleAccount
*account
,
276 const char *host
, int port
,
277 PurpleProxyConnectFunction connect_cb
, gpointer data
);
280 * purple_proxy_connect_socks5_account:
281 * @handle: A handle that should be associated with this
282 * connection attempt. The handle can be used
283 * to cancel the connection attempt using the
284 * purple_proxy_connect_cancel_with_handle()
286 * @account: The account making the connection.
287 * @gpi: The PurpleProxyInfo specifying the proxy settings
288 * @host: The destination host.
289 * @port: The destination port.
290 * @connect_cb: (scope call): The function to call when the connection is
291 * established. If the connection failed then
292 * fd will be -1 and error message will be set
293 * to something descriptive (hopefully).
294 * @data: User-defined data.
296 * Makes a connection through a SOCKS5 proxy.
298 * Note that if the account that is making the connection uses a proxy, this
299 * connection to a SOCKS5 proxy will be made through the account proxy.
301 * Returns: NULL if there was an error, or a reference to an
302 * opaque data structure that can be used to cancel
303 * the pending connection, if needed.
305 PurpleProxyConnectData
*purple_proxy_connect_socks5_account(void *handle
,
306 PurpleAccount
*account
, PurpleProxyInfo
*gpi
,
307 const char *host
, int port
,
308 PurpleProxyConnectFunction connect_cb
, gpointer data
);
311 * purple_proxy_connect_cancel:
312 * @connect_data: The #PurpleProxyConnectData to cancel.
314 * Cancel an in-progress connection attempt. This should be called
315 * by the protocol if the user disables an account while it is still
316 * performing the initial sign on. Or when establishing a file
317 * transfer, if we attempt to connect to a remote user but they
318 * are behind a firewall then the protocol can cancel the connection
319 * attempt early rather than just letting the OS's TCP/IP stack
320 * time-out the connection.
322 void purple_proxy_connect_cancel(PurpleProxyConnectData
*connect_data
);
325 * purple_proxy_connect_cancel_with_handle:
326 * @handle: The handle.
328 * Closes all proxy connections registered with the specified handle.
330 void purple_proxy_connect_cancel_with_handle(void *handle
);
333 * purple_proxy_get_proxy_resolver:
334 * @account: The account for which to get the proxy resolver.
335 * @error: Return location for a GError, or NULL.
337 * Returns a #GProxyResolver capable of resolving which proxy
338 * to use for this account, if any. This object can be given to a
339 * #GSocketClient for automatic proxy handling or can be used
340 * directly if desired.
342 * Returns: (transfer full): NULL if there was an error with the
343 * account's (or system) proxy settings, or a reference to
344 * a #GProxyResolver on success.
346 GProxyResolver
*purple_proxy_get_proxy_resolver(PurpleAccount
*account
,
351 #endif /* _PURPLE_PROXY_H_ */