Mercurial > pidgin.yaz
diff src/proxy.h @ 1840:00aef397a1fe
[gaim-migrate @ 1850]
reworked some of the proxy stuff so that it's non-blocking now. next thing to do is to get IRC, MSN, Napster, and Jabber to use the new proxy_connect code. After that, Oscar and Yahoo (maybe Zephyr too? not likely)
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Sat, 12 May 2001 01:38:04 +0000 |
| parents | 56c7ceb986a8 |
| children | 4dbd8533d209 |
line wrap: on
line diff
--- a/src/proxy.h Fri May 11 21:54:27 2001 +0000 +++ b/src/proxy.h Sat May 12 01:38:04 2001 +0000 @@ -30,12 +30,15 @@ #include <sys/socket.h> #include <netdb.h> #include <netinet/in.h> +#include <gtk/gtk.h> #define PROXY_NONE 0 #define PROXY_HTTP 1 #define PROXY_SOCKS4 2 #define PROXY_SOCKS5 3 -extern int proxy_connect(char *host, int port, char *proxyhost, int proxyport, int proxytype); +extern int proxy_connect(char *host, int port, + char *proxyhost, int proxyport, int proxytype, + GdkInputFunction func, gpointer data); #endif
