]> andersk Git - libfaim.git/blob - faim/faimconfig.h
Fix the small bug in aim_newcon.
[libfaim.git] / faim / faimconfig.h
1 /*
2  *  faimconfig.h
3  *
4  * Contains various compile-time options that apply _only to libfaim.
5  * Note that setting any of these options in a frontend header does not imply
6  * that they'll get set here.  Notably, the 'debug' of this file is _not_ 
7  * the same as the frontend 'debug'.  They can be different values.
8  *
9  */
10
11 #ifndef __FAIMCONFIG_H__
12 #define __FAIMCONFIG_H__
13
14 /* 
15  * set debug to be > 0 if you want debugging information spewing
16  * on the attached tty.  set to 0 for daily use.  this value
17  * is _not_ inherited by the frontend, only this backend.
18  *
19  * Default: 0  
20 */
21 #define debug 0 
22
23 /*
24  * Maximum number of connections the library can simultaneously
25  * handle.  Five is fairly arbitrary.  Only one client that I 
26  * know of uses more than one concurrently anyway (which means
27  * its only lightly tested too).  
28  *
29  * Default: 5
30  *
31  */
32 #define AIM_CONN_MAX 5 
33
34 /*
35  *  define TIS_TELNET_PROXY if you have a TIS firewall (Gauntlet) and
36  * you want to use FAIM through the firewall
37  *
38  * XXX: The TIS firewall code hasn't existed, let alone worked,
39  *      in many, many months.  I'd be happy to take fixes.
40  *
41  * Default: undefined
42  */
43 #undef TIS_TELNET_PROXY "proxy.mydomain.com"
44
45 /*
46  * USE_SNAC_FOR_IMS is an old feature that allowed better
47  * tracking of error messages by caching SNAC IDs of outgoing
48  * ICBMs and comparing them to incoming errors.  However,
49  * its a helluvalot of overhead for something that should
50  * rarely happen.  
51  *
52  * Default: defined.
53  *
54  */
55 #define USE_SNAC_FOR_IMS
56
57 /*
58  * Default Authorizer server name and TCP port for the OSCAR farm.  
59  *
60  * You shouldn't need to change this unless you're writing
61  * your own server. 
62  *
63  * Note that only one server is needed to start the whole
64  * AIM process.  The later server addresses come from
65  * the authorizer service.
66  *
67  */
68 #define FAIM_LOGIN_SERVER "login.oscar.aol.com"
69 #define FAIM_LOGIN_PORT 5190
70
71 /*
72  * MAX_READ_ERROR can be decreased if you find dead connections
73  * lingering around, and not getting detected, for too long.
74  *
75  * Default: 100
76  *
77  */
78 #define MAX_READ_ERROR 100
79
80 #endif /* __FAIMCONFIG_H__ */
This page took 2.409927 seconds and 5 git commands to generate.