Mercurial > pidgin
annotate src/proxy.h @ 5450:bb1e160467b6
[gaim-migrate @ 5838]
Thanks to J P (j_pong) for tracking this down, this fixes base16, and might
fix the corrupt buddy lists for the win32 folk
also there's a cleanup for a compile warning
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Tue, 20 May 2003 00:45:35 +0000 |
parents | 4691c5936c01 |
children | 9eb5b13fd412 |
rev | line source |
---|---|
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
1 /** |
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
2 * @file proxy.h Proxy functions |
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
3 * @ingroup core |
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4634
diff
changeset
|
4 * |
1 | 5 * gaim |
6 * | |
7 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net> | |
8 * | |
9 * This program is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or | |
12 * (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 | |
24 /* this is the export part of the proxy.c file. it does a little | |
25 prototype-ing stuff and redefine some net function to mask them | |
26 with some kind of transparent layer */ | |
27 | |
2417
5473c8c5378d
[gaim-migrate @ 2430]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
28 #ifndef _PROXY_H_ |
5473c8c5378d
[gaim-migrate @ 2430]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
29 #define _PROXY_H_ |
1 | 30 |
3664 | 31 #include <sys/types.h> |
32 /*this must happen before sys/socket.h or freebsd won't compile*/ | |
33 | |
3630 | 34 #ifndef _WIN32 |
1 | 35 #include <sys/socket.h> |
36 #include <netdb.h> | |
37 #include <netinet/in.h> | |
3630 | 38 #else |
39 #include <winsock.h> | |
40 #endif | |
41 | |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
42 #include <glib.h> |
1 | 43 |
4634 | 44 #include "core.h" |
45 | |
4366 | 46 typedef enum { |
4634 | 47 PROXY_USE_GLOBAL = -1, |
4366 | 48 PROXY_NONE = 0, |
49 PROXY_HTTP, | |
50 PROXY_SOCKS4, | |
51 PROXY_SOCKS5, | |
52 } proxytype_t; | |
1 | 53 |
4634 | 54 struct gaim_proxy_info { |
55 int proxytype; | |
56 char proxyhost[128]; | |
57 proxytype_t proxyport; | |
58 char proxyuser[128]; | |
59 char proxypass[128]; | |
60 }; | |
61 | |
62 extern struct gaim_proxy_info global_proxy_info; | |
4137 | 63 extern guint proxy_info_is_from_gaimrc; |
1881
a02584b98823
[gaim-migrate @ 1891]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1843
diff
changeset
|
64 |
2090
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
65 typedef enum { |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
66 GAIM_INPUT_READ = 1 << 0, |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
67 GAIM_INPUT_WRITE = 1 << 1 |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
68 } GaimInputCondition; |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
69 typedef void (*GaimInputFunction)(gpointer, gint, GaimInputCondition); |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
70 |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
71 extern gint gaim_input_add(int, GaimInputCondition, GaimInputFunction, gpointer); |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
72 extern void gaim_input_remove(gint); |
b66aca8e8dce
[gaim-migrate @ 2100]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1881
diff
changeset
|
73 |
4634 | 74 extern int proxy_connect(struct gaim_account *account, char *host, int port, GaimInputFunction func, gpointer data); |
1 | 75 |
2417
5473c8c5378d
[gaim-migrate @ 2430]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2090
diff
changeset
|
76 #endif /* _PROXY_H_ */ |