diff libgaim/proxy.h @ 14262:baff095b146c

[gaim-migrate @ 16944] Rename GaimProxyConnectInfo to GaimProxyConnectData, and change the variables from connect_info to connect_data. Sorry, but I wanted to get this right before it becomes permanent. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 21 Aug 2006 05:25:44 +0000
parents 60b1bc8dbf37
children 118fd0dc5b6e
line wrap: on
line diff
--- a/libgaim/proxy.h	Mon Aug 21 05:07:42 2006 +0000
+++ b/libgaim/proxy.h	Mon Aug 21 05:25:44 2006 +0000
@@ -56,7 +56,7 @@
 
 } GaimProxyInfo;
 
-typedef struct _GaimProxyConnectInfo GaimProxyConnectInfo;
+typedef struct _GaimProxyConnectData GaimProxyConnectData;
 
 typedef void (*GaimProxyConnectFunction)(gpointer data, gint source, const gchar *error_message);
 
@@ -237,7 +237,7 @@
  *         structure that can be used to cancel the pending
  *         connection, if needed.
  */
-GaimProxyConnectInfo *gaim_proxy_connect(GaimAccount *account,
+GaimProxyConnectData *gaim_proxy_connect(GaimAccount *account,
 			const char *host, int port,
 			GaimProxyConnectFunction connect_cb, gpointer data);
 
@@ -257,7 +257,7 @@
  *         structure that can be used to cancel the pending
  *         connection, if needed.
  */
-GaimProxyConnectInfo *gaim_proxy_connect_socks5(GaimProxyInfo *gpi,
+GaimProxyConnectData *gaim_proxy_connect_socks5(GaimProxyInfo *gpi,
 			const char *host, int port,
 			GaimProxyConnectFunction connect_cb, gpointer data);
 
@@ -270,7 +270,7 @@
  * attempt early rather than just letting the OS's TCP/IP stack
  * time-out the connection.
  */
-void gaim_proxy_connect_cancel(GaimProxyConnectInfo *connect_info);
+void gaim_proxy_connect_cancel(GaimProxyConnectData *connect_data);
 
 /*@}*/