Mercurial > pidgin
annotate src/protocols/oscar/faimconfig.h @ 9166:1e51236d825e
[gaim-migrate @ 9951]
This removes some stuff for im image that isn't used anymore.
Basicly one of the things I did when i brought it back, was to make it so
the host widget doesn't have to do any special handling for its imhtml to
support <img id="###"> tags. And while this goal was achieved in 0.78,
there's still code all over the place that checks flags that aren't used
and iterates over lists that will always be empty. This doesn't remove all
of it, but removes some of it anyway.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Wed, 02 Jun 2004 05:08:49 +0000 |
parents | d82efea341ef |
children |
rev | line source |
---|---|
2086 | 1 /* |
2 * faimconfig.h | |
3 * | |
4 * Contains various compile-time options that apply _only_ to libfaim. | |
5 * | |
6 */ | |
7 | |
8 #ifndef __FAIMCONFIG_H__ | |
9 #define __FAIMCONFIG_H__ | |
10 | |
11 /* | |
12 * USE_SNAC_FOR_IMS is an old feature that allowed better | |
13 * tracking of error messages by caching SNAC IDs of outgoing | |
14 * ICBMs and comparing them to incoming errors. However, | |
15 * its a helluvalot of overhead for something that should | |
16 * rarely happen. | |
17 * | |
18 * Default: defined. This is now defined by default | |
19 * because it should be stable and its not too bad. | |
20 * And Josh wanted it. | |
21 * | |
22 */ | |
23 #define USE_SNAC_FOR_IMS | |
24 | |
25 /* | |
26 * Default Authorizer server name and TCP port for the OSCAR farm. | |
27 * | |
28 * You shouldn't need to change this unless you're writing | |
29 * your own server. | |
30 * | |
31 * Note that only one server is needed to start the whole | |
32 * AIM process. The later server addresses come from | |
33 * the authorizer service. | |
34 * | |
35 * This is only here for convenience. Its still up to | |
36 * the client to connect to it. | |
37 * | |
38 */ | |
39 #define FAIM_LOGIN_SERVER "login.oscar.aol.com" | |
40 #define FAIM_LOGIN_PORT 5190 | |
41 | |
42 /* | |
43 * Size of the SNAC caching hash. | |
44 * | |
45 * Default: 16 | |
46 * | |
47 */ | |
48 #define FAIM_SNAC_HASH_SIZE 16 | |
49 | |
50 /* | |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
51 * If building on Win32, define WIN32_STATIC if you don't want |
2086 | 52 * to compile libfaim as a DLL (and instead link it right into |
53 * your app). | |
54 */ | |
55 #define WIN32_STATIC | |
56 | |
57 #endif /* __FAIMCONFIG_H__ */ | |
58 | |
59 |