]> andersk Git - libfaim.git/blame - CHANGES
- Mon Sep 10 06:15:43 PDT 2001
[libfaim.git] / CHANGES
CommitLineData
9de3ca7e 1
2No release numbers
3------------------
031c2fb3 4 - Mon Sep 10 06:15:43 PDT 2001
5 - Remove $Id line from md5.h. I really really hate those things.
6 - Remove all that locking crap. It never worked right anyway.
7 - Add conn->inside for things that should never ever be seen by clients
8 - Store supported groups list for each connection
9 - Support migrations.
10 - faimtest now theoretically supports doing this. It happens so rarely
11 that it makes it difficult to test. For more complicated clients, a
12 flag will have to be kept so that some things that happen during login
13 don't get triggered the second time around. But faimtest doesn't have
14 such problems.
15 - Added some random commentary.
16
9522736c 17 - Sun Sep 9 03:01:28 PDT 2001
18 - Three fixes in directim for gaim. It works now. Yay.
19
e8634a4b 20 - Sat Sep 8 21:26:27 PDT 2001
21 - Minor bug directim_connect
22
8722e782 23 - Sat Sep 8 20:18:34 PDT 2001
24 - Split up the ICBM Channel 2 handlers a bit more
25 - Add a stub parser for recieving buddy lists. It will stay that way until
26 someone decides on a good API for passing lists like this to the client.
27 In case someone does, the same standard will be used for setbuddylist and
28 the as yet nonexistant support for server-side buddy lists.
29 - Make infochange work again. I still don't like it, but I don't want to
30 fix it.
31
3e9e6e14 32 - Sat Sep 8 19:05:05 PDT 2001
33 - Redo ICQ login
34 - Fix search by email (oops).
35
59e1da90 36 - Sat Sep 8 17:07:09 PDT 2001
37 - Fix directim so you can do it more than once without crashing.
38 - This removes the connect/disconnect callbacks. They were pointless, as
39 you can get the same information at a better spot by looking for when
40 aim_getcommand returns -1, just like is done for FLAP connections.
41 - (This was causing aim_conn_kill to be called twice for the same connect,
42 once in the client callback, and once more when aim_getcommand returned
43 the -1).
44 - Add aim_conn_(close|kill)_rend(). This is for destroying the cookie and
45 the internal data sections in one spot.
46 - Fix a bug in aim_connrst (and hence aim_logout()) that caused intdata/priv
47 to not be freed in those cases. Evil.
48
c5f5b7f1 49 - Sat Sep 8 07:32:27 PDT 2001
50 - Clean up ft.c slightly. Direct IM now works. In both directions.
51 - This could still use a lot more help. It should use bstreams more.
52
b064db1b 53 - Sat Sep 8 00:55:46 PDT 2001
54 - Chatnav loop fix. (Err. I shouldn't code when I'm that tired.)
55 - Remove some things from BUGS
56 - Remove USE_MACROS from faimconfig.h. Not used, and frivelous when it was.
57
84e0ca17 58 - Fri Sep 7 21:18:51 PDT 2001
59 - Make icon field names uniform
60 - Add AIM_IMFLAGS_CUSTOMFEATURES. This allows the client to send/recieve
61 the field in IMs that show client information.
62 - This can be used to identify other open source OSCAR clients, if any
63 one is interested.
64 - Increase the size of args->icbmflags to 32bits
65 - Make sure that extended-only flags are not set for aim_send_im()
66
e1b8c575 67 - Fri Sep 7 19:59:43 PDT 2001
68 - Fix buddyicons. Yay! (checksums are 32bits all the time. duh.)
69
d410cf58 70 - Mon Sep 3 18:48:26 PDT 2001
71 - Reformat everything to use real tabs (and to my latest coding style)
72 - Abstract out the numerical data types to fu8/16/32_t for portability.
73 - AIM_FRAMETYPE_OSCAR -> AIM_FRAMETYPE_FLAP. This makes more sense.
74 - aim_conn_t's FLAP sequence number was a signed int. Oops.
75 - Get rid of the 'struct' on all types suffixed with _t. That's been
76 annoying me for a while. They're all real typedefs now.
77 - Yes, client people are going to be rather annoyed by this. But it
78 doesn't stop there. Keep reading.
79 - Make the 'struct aim_rxcblist_t' type local to rxhandlers.c.
80 - Combine the command_tx_struct and command_rx_struct into aim_frame_t.
81 - Mostly aim_frame_t is command_rx_struct. For command_tx_struct, the
82 same structure is used, except where ->sent was, ->handled is now
83 used.
84 - This makes things a lot easier, everywhere.
85 - Get rid of ->lock. Pointless. If libfaim is ever preemptible, it
86 has much more important problems than that.
87 - Welcome to aim_bstream_t. No more direct buffer accesses. Anywhere.
88 - In fact I plan on getting rid of the aimutil macros completly.
89 - This isn't complete yet. It will be better later. Believe me. Maybe
90 even make more sense.
91 - More advanced and configurable boundschecking is coming, too.
92 - Clean up lots of stuff, everywhere.
93 - Rearrange the implementation of the TLV functions, saving lots of code.
94 - I'm rather pleased with the way some things got implemented with this,
95 particularly in places where TLVs contain TLVs.
96 - Get rid of aim_puttlv_() functions. Those were gross. Use tlvchains.
97 - XOR login is temporarily broken. I'll fix it someday. ("Someone" needs it.)
98 - Fix the return values of most everything -- OSCAR functions should all
99 return 0 on sucess, negative errno on failure.
100 - There are several things braced with #ifdef MID_REWROTE_ALL_THE_CRAP.
101 Consider that code broken and nonfunctional for now.
102 - I think I may have broken buddy icons. Remind me to fix that.
103 - Renovate faimtest substantially. Reformat, split up, update to new types.
104
70b889c5 105 - Wed Aug 29 16:59:24 PDT 2001
106 - Pass up entire icon triplet (checksum/length/timestamp) in all cases
107 that it is recieved.
108 - Eric was paying more attention than I am.
109
9031e2e3 110 - Sat Aug 25 19:46:38 PDT 2001
111 - Pass "Maximum visible message length" to client in chat info update
112 - This is the real maximum message length now. There is still a
113 "complexity" limit that will prevent you from sending messages
114 even if they are less than this limit (102 right now), but I don't
115 know how that is calculated.
116
36a61e0d 117 - Sat Aug 25 19:19:16 PDT 2001
118 - Keep parsing missed calls for entire packet
119 - This is really easy to test now. Just talk to someone with
120 their minmsginterval set high (like 10seconds or something)
121
355229fe 122 - Sat Aug 25 18:35:13 PDT 2001
123 - aim_sendconnack -> aim_sendflapver
124 - Remove addicbmparam. This was identical to aim_seticbmparam
125 - aim_seticbmparam now takes a struct with the parameters in it. See
126 faimtest. !!! REQUIRES CLIENT CHANGES if you use aim_seticbmparam, which
127 you really really should -- the defaults are insanely limited
128 - Fix rendezvous IM parsing that I broke last time.
129 - ICBM parameter info callback gives same struct as above. !!! REQUIRES
130 CLIENT CHANGES
131 - Reformat login.c and part of faimtest.c
132 - !!! NOTE: don't do anything in your motd handler. If you do, it will
133 get run twice, sine for some reason AOL is sending two MOTDs now.
134
6ae3c48d 135 - Wed Aug 22 22:11:18 PDT 2001
136 - Reformat the rest of im.c
137 - Fix a few returns, particularly in error cases
138
1dcd23dd 139 - Thu Aug 16 06:17:57 PDT 2001
140 - Reformat a bit of im.c and aim.h
141 - Rearrange encoding/subencoding checks in IM parsing
142
2d5fd943 143 - Fri Aug 3 14:19:37 EDT 2001
144 - Naje aun_sebd_un retyrn sabe vakyes
145
3b065cb0 146 - Thu Aug 2 13:28:37 EDT 2001
147 - Uhm. Why does arcanejill think its in EDT?
148 - Cache the username on warnings so errors work right.
149 - Someday, I'm going to convert all of libfaim to that formatting style, too.
150
7a449b5d 151 - Wed Jun 27 00:13:20 EDT 2001
152 - Some comments about UNICODE in faimtest.
153
5f47d4a9 154 - Fri Jun 15 17:51:27 EDT 2001
155 - Make faimtest compile on RH7.1 (new gcc).
156 - Add aim_conn_getsess()
157 - Add aim_getconn_type_all() and aim_getconn_fd().
158 - Make aim_connrst() and aim_conn_getnext() static to conn.c.
159 - Why does arcanejill think she is in EDT? Oh well.
160
b309471d 161 - Thu Jun 14 17:37:47 PDT 2001
162 - Rearrange aim_setprofile(). It will now let you _not_ send a profile,
163 if you really want to (pass NULL). Note that this is quite different
164 than sending a _blank_ profile. Also fixes the "asci" bug.
165
79e0a001 166 - Mon Jun 4 12:57:46 PDT 2001
167 - Fix chatnav. Whoops.
168
f6686b7e 169 - Mon Jun 4 12:45:18 PDT 2001
170 - Don't use snacid's for generic requests (gets around recent blocks)
171 - If they start doing snacid-based blocks again, an audit will have
172 to be done to see what WinAIM requests uses snacids for and what
173 it leaves it blank for. That will be tedious and I'm not going to
174 do it.
175
fa358732 176 - Thu May 31 23:00:50 PDT 2001
177 - Store two hardcoded hashes in login.c. Sigh.
178 - Add prototype for aim_callhandler_noparam in aim_internal.h
179
50038c74 180 - Sat May 26 03:58:27 PDT 2001
181 - Aha! This is why I could never get icons to work before.
182 - Luckily the checksum is painfully simple.
183
7b91722d 184 - Sat May 26 01:37:39 PDT 2001
185 - So this is my big merge with the ActiveBuddy version...
186 - Remove use of tlvchains from IM parsing for better performance
187 - Add in buddy icon support
188 - Add support for sending UNICODE messages.
189 - Split up the more complicated options to aim_send_im into a structure
190 that is passed to aim_send_im_ext(). This makes it easier to send
191 simple messages, and only slightly harder to send complex ones.
192 - aim_send_im_ext() must be used if you're using buddy icons and/or you
193 are sending UNICODE messages.
194 - UNICODE is fully explained in commentary above aim_send_im_ext() in im.c.
195 - The ISO-8859-1 option is also added. Use when necessary, to avoid making
196 WinAIM barf.
197 - This removes the msglen parameter to aim_send_im because that was only
198 needed to do UNICODE, which can now only be done by aim_send_im_ext.
199
b39e0a91 200 - Wed May 23 18:05:46 PDT 2001
201 - I upgraded libtool. Which broke the faimtest makefile.
202 - Parse locate rights
203 - You shouldn't ask so many questions, Eric.
204
f6a4f6b7 205 - Wed May 16 12:48:13 PDT 2001
206 - Thanks Rob and Eric
207
6c05e183 208 - Thu May 10 17:37:23 PDT 2001
209 - I haven't had lunch yet. What should I have?
210
83ae98f8 211 - Wed May 9 15:21:51 PDT 2001
212 - I had pizza for lunch.
213
e677fc43 214 - Mon May 7 15:19:55 PDT 2001
215 - Rename rxhandler_t to aim_rxhandler_t. This has been
216 bugging me for a while.
217
f7bb124a 218 - Thu May 3 15:47:23 PDT 2001
219 - Clean up getcap/putcaps
220 - Add GAMES2 and SENDBUDDYLIST caps (the latter is new in winaim 4.7beta)
221 - Update hash to latest value
222
bb3e2abf 223 - Wed Apr 25 11:51:39 PDT 2001
224 - I think this was a bug.
225
d2698e03 226 - Tue Apr 24 17:36:03 PDT 2001
227 - Let Eric generate the hash if he wants.
228
001c9b80 229 - Mon Apr 23 15:58:11 PDT 2001
230 - On a clear day, you can see forever.
231
5ac961d5 232 - Thu Mar 29 13:05:50 PST 2001
233 - Less leaks.
234
328837f7 235 - Thu Mar 29 14:45:22 CST 2001 (jbm)
236 - Add module capability to the 0001/001f stuff (jbm)
237
a2244dd9 238 - Wed Mar 28 21:20:08 PST 2001
239 - Add flags arg to aim_chat_send_im()
240 - Add msglen arg to aim_send_im and aim_chat_send_im
241 - This will make more sense when I make the UNICODE commit (tomorrow?)
242
b1eac25a 243 - Wed Mar 28 16:51:25 PST 2001
244 - I decided it was a good day while I was figuring out that it was a bad day.
245 - See faimtest and login.c::memrequest().
246 - Hopefully I'm done for a while.
247
d32954e7 248 - Tue Mar 27 19:15:10 PST 2001
249 - I haven't decided yet whether today is a good day or a bad day.
250 - Probably both.
251 - More later.
252
69e7980c 253 - Mon Mar 26 16:08:45 PST 2001
254 - Why didn't anyone tell me buddy-offgoing wasn't working?
255 - *** REQUIRES CLIENT CHANGES... buddy-offgoing now passes a userinfo
256 struct (its now identical to buddy-oncoming)
257
e80a0fa9 258 - Mon Mar 26 15:57:41 PST 2001
259 - Hrmph.
260 - Debuglevel wasn't getting set properly by aim_session_init
261
00ef5271 262 - Sat Mar 24 03:16:32 UTC 2001
263 - vaargs to msgerror and locateerror swapped
264 - ** CLIENT CHANGE: Reason code comes before SN now. This is so that
265 the backend code for all three error handlers is identical.
266 - aim_getinfo() returns -1 on failure (hah! I don't think anyone checks
267 return codes from libfaim anyway...they're known for their
268 inconsistency and lack of sensicality)
269 - Remove _DEFAULT handlers in faimtest...
270 - They were not consistent.
271 - They did not make sense.
272 - They did not work anyway.
273 - Most of them were #if 0'd.
274 - Add ICBM Parameter Info callback... you can catch this if you want.
275 - aim_getbuildstring() now takes a buffer instead of returning static (ew!)
276 - Clean up, "factorize", etc
277 - More stuff... (Only one "middle handler" left in rxhandlers.c!)
278
9f1a4013 279 - Fri Mar 23 05:42:11 UTC 2001
280 - Export aim_encode_password_md5()
281 - Add middle handler for 000b/0002 (min report interval)
282 - Add aim_session_kill()
283 - CLIENTS MUST CALL THIS either in addition to or instead of
284 aim_logoff(), particularly if you keep lots of sessions open.
285 (Sessions now contain dynamically allocated memory which must be freed.)
286 - Oh, and some other stuff...
287
154b4093 288 - Fri Mar 23 01:45:28 UTC 2001
289 - Add AIM_CLIENTINFO_KNOWNGOOD
290 - Fix a few details in aim_send_login (thanks temas)
291 - Prevent aim_rxhandlers from being called recursively
292 - This is something that has been in my PENDING_AIM mailbox for over
293 a year now. I figured it was trivial enough to throw in. EveryBuddy
294 wanted it, but I don't remember why. It should never happen anyway.
295 - Use AIM_CLIENTINFO_KNOWNGOOD
296 - This lets faimtest log in after today's round of AOL being mean.
297
bb010ae0 298 - Fri Mar 16 23:12:58 UTC 2001
299 - Remove one level from aim_rxdispatch()
300
9bf14d44 301 - Wed Mar 14 20:21:49 UTC 2001
302 - Clean up declarations of TLV functions (ie, const)
303 - Add -o and -O to faimtest (I didn't use your patch, josh)
304
d2587300 305 - Wed Mar 14 03:11:03 UTC 2001
306 - Err...I'll commit before I go home. More faimtest crap.
307
b562f484 308 - Tue Mar 13 20:23:04 UTC 2001
309 - Fiddle with faimtest a bit.
310
6b9df03c 311 - Sun Mar 11 06:02:19 UTC 2001
312 - Banish socklen_t.
313
9e8c4225 314 - Sun Mar 11 05:51:45 UTC 2001 (jbm)
315 - Split off aim_internal.h
316 - Add aim_tx_cleanqueue()
317 - Remove sn from directim callback (use priv)
318
646c6b52 319 - Mon Mar 5 01:19:48 UTC 2001
320 - Fix typo in last CHANGES entry.
321 - Add fix from Eric to keep efence from complaining about malloc(0)
322 - Add .cvsignore files (also from Eric)
323 - Throw in josh's latest OFT/ODC kludges
324 - Completly remove all calls to printf and (unbounded) sprintf
325 - Add aim_setdebuggingcb()
326 - Remove preprocessor-based debug semantics (faimconfig.h)
327 - faimdprintf() now calls a user-specified callback to do printing
328 - Rearrange aim_tx_new() parameters to be more sensical, add sess
329 - Do some sanity checking in aim_tx_new()
330 - Add #defines to keep printf from compiling inside libfaim
331 - Who knows what else. (in total, this patch is nearly 5k lines)
332
9d83220c 333 - Fri Mar 2 02:17:22 UTC 2001
646c6b52 334 - Add aim_fingerprintclient(). (AB will trust this, but you shouldn't.)
9d83220c 335 - Add some EXTRA_DIST to Makefile.am
336
2acf2afa 337 - Mon Feb 26 01:46:34 UTC 2001
338 - Fix swapped bytes in aim_caps[]. Thanks to
339 Bruce Miller <bmiller@ics.uci.edu> for pointing this out.
340
64c78745 341 - Sun Feb 11 01:07:36 UTC 2001
342 - Make secondary connections to the authorizer work again
343 - Make aim_auth_changepasswd() work again.
344 - Add aim_auth_setversions(), aim_auth_getinfo(), aim_auth_setemail(),
345 aim_auth_reqconfirm()
346 - Add middle handlers for responses to all of above.
347 - Add examples of above to faimtest (start with 'reqauth')
348
b8c79ca7 349 - Fri Feb 9 22:31:22 UTC 2001
350 - Add aim_tx_setenqueue().
351
24fbfcf3 352 - Thu Feb 8 20:12:39 UTC 2001
353 - Let TLV functions out of aim.h if FAIM_NEED_TLV is defined.
354
37ee990e 355 - Thu Feb 8 02:31:25 UTC 2001
356 - Remove aim_purgecookies() -- never used anyway
357 - Clean up a few bits of aim_msgcookie.c
358 - Remove AIM_CONN_MAX constant (hasn't been relevent in ages)
359 - Change commentary on synchro in aim.h
360 - Add NOPLOCKS and make them default
361 - Make faim/aim.h more of a mess; try to keep interfaces hiddenish.
362 - Add #define FAIM_INTERNAL to top of every file
363 - Remove aim_countconn (no one uses it anyway)
364 - Add aim_cloneconn() (cringe.)
365 - Throw in josh's getfile patch (and then munge it enough to break it)
366 - Add getopt() to faimtest.
367 - Remove aim_buildcode.h/mkbuildinfo.sh crap.
368 - Clean up aim_cleansnacs()
369 - There may have been other stuff too. As always, the diff is the
370 most accurate changelog there is.
371 - *** FT is currently more broken than it was before. Also, this patch
372 introduces even more memory leaks. You've been warned.
373
0589dc54 374 - Sun Dec 17 07:19:04 UTC 2000
375 - Update the capability block list
376
d6c9fcf0 377 - Sat Dec 16 01:34:19 UTC 2000
378 - Rename paramid to rateclass
379 - Add a long comment about the rate system
380 - Add a few other comments
381 - Clean up aim_bos_clientready().
382
1449ad2b 383 - Fri Dec 15 23:35:01 UTC 2000
384 - Add genericerr callback/middle.
385 - This is for catching the errors that come back, for instance, from
386 sending a SNAC that isn't supported by the host (such as the
387 Watcher Request SNAC).
388
06bc8607 389 - Fri Dec 15 21:51:32 UTC 2000
390 - Add more info to evilnotify callback
391 - Add a few values to aim_cbtypes.h
392
3e2c7bcf 393 - Fri Dec 15 20:41:15 UTC 2000
394 - Revise README
395 - Make aimdebugd compile
396 - Typos
397
275a2ff8 398 - Fri Dec 15 02:04:12 UTC 2000
399 - Parse rate changes *properly*
400 - Add sample code to faimtest demonstrating my approximations
401 on how to fiddle with aim_conn_setlatency() in relation
402 to the rate changes (properly wildly conservative). [I also
403 copied this stuff into mfaim.]
404
ee49b735 405 - Thu Dec 14 03:39:34 UTC 2000
406 - Change the 0x01 to a 0x00 in auth request to make buddy lists work again
407 - Rearrange bytes in setversions() to match winaim
408 - Add several cachesnac() calls
409 - Add hostonline and hostversions parsers (superfluous)
410
1ea867e3 411 - Wed Dec 13 02:26:39 UTC 2000
412 - Create aim_cachesnac()
413 - Some long overdue cleanups
414
89bce177 415 - Wed Dec 13 00:38:56 UTC 2000
416 - Added the client update/version info to the authresp callback
417 - Added the prototype for aim_getfile_send_chunk to aim.h
418
355982c5 419 - Tue Dec 12 23:02:41 UTC 2000
420 - Got pissed off at sess->logininfo. Got rid of it.
421 - Now pass all that stuff in as varargs, like it should be.
422 - *** Look at the changes to faimtest. You'll also need to
423 change anything in your code that references sess->logininfo
424 to reference sess->sn instead. The rest of the other info
425 is now unavailable (it was before, too, it just didnt look like it).
426 - A few other minor cleanups.
427 - Added aim_gettlv8/16/32, aim_puttlv_8, and aim_addtlvtochain_noval.
428 - Added that short 0x004a TLV to the auth request, like WinAIM 4.3.
429
9dbda50b 430 - Mon Dec 4 23:46:35 UTC 2000
431 - Add exchange to the create response callback (doh!)
432
55e77c8a 433 - Sat Dec 2 02:14:45 UTC 2000
434 - Dumb bug in aim_clearhandlers()
435
9f20a4e3 436 - Fri Dec 1 23:48:38 UTC 2000
437 - Store exchange along with room name in the great chat hack
438
9d2a3582 439 - Fri Dec 1 22:25:56 UTC 2000
440 - Fix numerous tiny (but sometimes catastrophic) bugs dealing
441 with connection death (particularly with chat connections)
442 - *** Any connection with a -1 fd will get returned by aim_select
443 immediatly now... your code probably already handles this implicitly.
444
fd0b7da6 445 - Wed Nov 29 17:31:23 UTC 2000
446 - Rewrote some of the msgcookie stuff
447 - Changed cachecookies to uncachecookies where it makes sense (arg!)
448 - Minor other stuff
449
22517493 450 - Fri Nov 10 08:24:34 UTC 2000
451 - Add sess->flags (replaces sess->snaclogin)
452 - Remove odd setstatus call in chat parser
453 - Remove aim_tx_enqueue macro, replace with a smarter one
454 - If a connection is in progress, enqueue instead of calling
455 the client-specified queuer
456 - Add support for nonblocking connects through the
457 AIM_SESS_FLAG_NONBLOCKCONNECT flag to aim_session_init()
458 - Add AIM_CB_SPECIAL_CONNCOMPLETE callback. Not real useful.
459 - Add AIM_CB_SPECIAL_FLAPVER callback. Can be used as an alternate
460 way of starting the login process, or just to look like you
461 know what you're doing. Fixed associated inconsistencies
462 in aim_rxhandlers too.
463 - Fix some connection status stupidities in faimtest.
464
5daacaa3 465 - Wed Nov 8 13:11:18 UTC 2000
466 - Reenable/reimplement older login, but only use for ICQ UINs
467 - This is a fairly ugly hack. But...eh. It works.
468 - You'll need to remove the aim_sendconnack() before the
469 call to aim_request_login. It will now do it automatically
470 if its needed. (hint: ***CLIENT CHANGE***)
471
be67fdd0 472 - Wed Nov 8 02:23:25 UTC 2000
473 - I'm trying out using a modified version of the kernel-doc scripts
474 to help document the libfaim code a bit. See aim_conn.c and
475 aim_tlv.c, as well as the scripts in utils/docs.
476
e7fb57f5 477 - Wed Oct 25 17:52:20 UTC 2000
478 - Cleanup warnings from newer gcc's (RH7.0)
479 - Aparently newer gcc's don't let you do as strong of integer types
480 on va_arg as older ones... So, let me know if this breaks on your
481 compiler
482
9c38f1a7 483 - Tue Oct 17 02:10:13 UTC 2000
484 - Rearrange a few things
485
22e638a0 486 - Mon Oct 16 20:56:59 UTC 2000
487 - Remove some warnings
488
3b101546 489 - Mon Oct 9 04:24:56 CDT 2000 (jbm)
490 - took care of the XXXs in aim_putuserinfo()
491 - now use dynamic TLV count to send ("look ma, no magic!")
492 - now send cap blocks
493 - now send icq info if a numeric SN
494
495 - Wed Oct 4 21:29:47 CDT 2000 (jbm)
496 - Fix borked disconnect callbacks
497 - Add aim_conn_in_sess()
498 - A little housekeeping in faimtest ("fixing" order of printf,
499 remove a comment)
500
501 - Mon Sep 25 00:21:31 CDT 2000 (jbm)
502 - Add a couple of ICQ userinfo parses
503
ec6b8da8 504 - Fri Sep 22 22:47:49 UTC 2000
505 - Add aim_icq_setstatus() (jbm)
506
871e2fd0 507 - Fri Sep 22 22:35:51 UTC 2000
508 - Apply jbm's patch below
509 - Minor cleanup in cb handler stuff
510
511 - Thu Sep 21 20:28:20 CDT 2000 (jbm)
512 - DirectIM shouldn't kill us any more.
513 - Eliminated a potential segfault in aim_send_im_direct().
514 - make tags (yay!).
515 - Added an aim_tx_destroy(); need to move the lib over to using it.
516 - Got rid of some #if 0 BS code in a couple of places
517 (aim_ft::establish() and aim_im::aim_parse_incoming_im_middle()).
518 - Added some file transfer stuff (so experimental, i haven't
519 had a chance to see if it causes cancer in lab animals).
520 - Added to faimtest for all of the above.
521 - Added myself to AUTHORS with Real Info.
522
bb0dc593 523 - Thu Sep 21 00:24:36 UTC 2000
524 - Add socks5 proxy support (not tested real well, worked the
525 few times a tried).
526 - Added proxy support to faimtest.
527
f2d214f9 528 - Tue Sep 19 03:10:07 UTC 2000
529 - Add aim_setuserinterests() and aim_setdirectoryinfo()
530 - Add ICQ away status
531
efe9513b 532 - Thu Sep 14 00:54:48 UTC 2000
533 - Added create room callback
534
a15d82b1 535 - Wed Sep 13 22:01:35 UTC 2000
536 - Remove references to "new" and "class" for dumb C++ compilers
537 - Renamed userinfo->class to userinfo->flags both for clarity and C++
538 - Remove some extraneous variables
539
44d6f2dc 540 - Tue Sep 12 20:16:51 UTC 2000
541 - Add aim_flap_nop() from my work tree
542
5925849b 543 - Tue Sep 12 05:06:53 UTC 2000
544 - Revert the two-byte change in aim_misc, clientready
545
999b6d5f 546 - Tue Sep 5 04:41:45 GMT 2000
547 - Few more minor things
548 - Added the changes needed for faimtest.
549 - Removed aimdebugd from default build
550
5ac21963 551 - Tue Sep 5 03:47:26 GMT 2000
552 - More ANSIfication for win32
553 - Forgot aim_misc last time.
554
c5ca2538 555 - Mon Sep 4 22:08:35 GMT 2000
556 - Forgot aim_snac and aim_search
557
78b3fb13 558 - Mon Sep 4 21:38:09 GMT 2000
559 - A mild step towards ANSI compliance
560 - Compiles cleanly with -pedantic (except for the libc issue in socket.h)
561 - Fixes various sign mismatch things. There may be more, we'll see
562 what MSVC has to say about it.
563 - Add faim_internal and faim_export macros so Win32 DLL is easier
564
a3619f23 565 - Sun Sep 3 23:58:17 UTC 2000
566 - Portability fixes (for solaris, set the SOLARIS env var first)
567
96f8b1ed 568 - Sat Sep 2 23:42:37 UTC 2000
569 - Hopefully fix aim_snac.c bugs
570 - Add Buddy List Rights parser (max buddies and max watchers)
571 - Fix rather major problem in rxhandlers caused by missing breaks
572 - Add reason code for msgerr (0004/0001) callback
573 - Add BOS Rights parser (max permit / max deny)
574 - Add locate error (0002/0001) parser
575 - Add parser for missed calls (0004/000a)
576
c78446b5 577 - Fri Sep 1 23:34:28 UTC 2000
578 - Switched the read()s in rxqueue to use recv()
579 - Should fix the big message problem and the big buddy list problem
580 - Changed some values around in aim_misc to match winaim4.1
581 - Added aim_addicbmparm. dunno what it does
582 - Cleanup the login process in faimtest (can now login in less than 2sec)
583
584 - Fri Sep 1 00:13:04 UTC 2000
585 - Avoid zero-length mallocs in aim_tlv
586
9797852c 587 - Thu Aug 31 23:40:23 UTC 2000
588 - Threw in aim_select modification from nicolas
589 - Remove stray debugging printf in aim_tlv
590
98c88242 591 - Mon Aug 28 03:11:15 GMT 2000
592 - Adds lots of comments
593 - Add AIM_CLASS_ALLUSERS constant for setgrouppermmask()
594 - Add warnings support (jbm)
595
b5bc2a8c 596 - Mon Aug 21 22:00:18 UTC 2000
597 - Implement SNAC login MD5 (thanks to Sonuvbob for that one)
598 - Clear out all that old login cruft. Much cleaner now.
599 - REQUIRES CLIENT CHANGES (see faimtest)
600
d9142146 601 - Fri Aug 18 19:52:54 UTC 2000
602 - Fix the non-pthread bug
603
dad2e696 604 - Thu Aug 17 23:19:40 UTC 2000
605 - A few more leak fixes (only a few left to go...)
606
91c55d47 607 - Thu Aug 17 23:08:08 UTC 2000
608 - More leak fixes (eric, eric, eric...)
609
b13c9e13 610 - Thu Aug 17 22:53:03 UTC 2000
611 - Change the SNAC cache to a hash instead of list
612 - Fixed a few leaks relating to aim_gettlv_str()
613
f8ac5020 614 - Thu Aug 17 14:04:18 UTC 2000
615 - Fix the fd closing bug introduced last week
616
3369f8d4 617 - Tue Aug 8 04:25:35 UTC 2000
618 - Preserve subtype and priv after aim_conn_close
619
4d7c1bfb 620 - Tue Aug 8 04:15:47 UTC 2000
621 - Fixed double-calling of faim_mutex_init
622 - conn->type preserved after aim_conn_close
623
1a8c261b 624 - Mon Jul 17 01:56:31 UTC 2000
625 - Added 0004/000c callback (for message acknowledgments)
626 - This goes with the AIM_IMFLAGS_ACK option that has been there
627 for ages now. When you send a message with that option, you'll
628 get a message back containing the screenname, telling you it was sent.
629 - Moved the aim_conn_kill's out of aim_get_command() and into
630 the client. They're only closed in there now. This is so that you
631 can detect what type of connection died. You'll want to handle
632 BOS and chat connections in special ways most likely. You'll also
633 need to call aim_conn_kill when you're done with it.
634 - Added/fixed the Rate Change handlers. Now passes up a long that
635 should contain a number. I'm currently in pattern-searching mode.
636
4dd56961 637 - Sun Jul 16 22:59:39 GMT 2000
638 - Fixed the locking in the rendezvous code. Hopefully is safe now.
639
7392c79f 640 - Sun Jul 16 11:03:28 GMT 2000
641 - Fixed 0001/000a chat printf. (Actually a one liner a few days ago.)
642 - Started integrating josh's 3k rendezvous patch. Currently only
643 directim is working. And its got bugs. But he's not online
644 right now, so I can't bitch. I'd love to bitch here, but I'm
645 tired.
646 - Can definitly accept directim connections and send/recieve.
647 - See faimtest for the new callbacks. (Urg.)
648 - Here weeee gooooo. (Not sure if this will break everyone or not.)
649
13ebc4c4 650 - Fri Jun 30 00:04:47 UTC 2000
651 - Removed the forceful ICQ-related warnings, just in case they're wrong
652 - Added three new fields to the client info.
653 - **REQUIRES CLIENT CHANGES -- see faimtest for new initializer
654 - Cleaned up aim_send_login()
655 - Put in a nice hidious fix for AOL's latest bit of the drama. See
656 aim_readtlvchain() for the details.
657
e5012450 658 - Mon Jun 26 07:53:02 UTC 2000
659 - Added utils/aimdebugd for playing with things -- see the README
660 - Added aim_im.c::aim_parse_outgoing_im(). Probably not useful
661 unless you're writing a server or something (or hacking aimdebugd).
662 - aim_send_im() now sends the same data as AIM4 does (three more bytes)
663 - Added aim_debugconn_sendconnect() for aimdebugd-enablement.
664
81d7797e 665 - Sat Jun 24 02:14:07 UTC 2000
666 - Added fakelocks for platforms without pthreads or that have no
667 use for them.
668 - Added workaround for MSG_WAITALL for people with the very broken
669 libc that comes with earlier Red Hat's.
670
68ac63c2 671 - Sat Jun 24 00:44:24 UTC 2000
672 - Support zero-type TLVs in aim_extractinfo()
673 - AOL now ocassionally throws extra zeros in so in order to break
674 clients. Aparently zero-type TLVs are a special case -- if the
675 type is zero, then _there is no length_ field. AOL are geniuses.
676 - Note that you only get these if you send a bad client string, such
677 as the top one in faimtest. If you #if 0 that one out and use the
678 second one, you'll be fine. (Unless you just want to see the message
679 for yourself. Its nifty. (FREE!))
680 - ICBM parser now uses aim_extractuserinfo() so that it can benefit
681 from the above changes, as well as clean up the whole "is it the
682 first or the second one of this type?" issue
683 - This also fixes the changes AOL made in away messages.
684 = Fixed a possible buffer overflow when AOL changes the max sn length
685 - Increased MAXSNLEN to 32 (they appear to be valid)
686 - If you start getting messages from someone called "AOL Instant
687 Messenger", see comment one, paragraph two.
688 - aim_select() now returns a -1 if there are no connections open
689 - Connections are now killed completely if there is a major error on them
690 - faimtest now calls aim_logoff() on connection error
691
f0a7908e 692 - Fri Jun 23 22:38:47 UTC 2000
693 - Adds start of adverts support
694 - Adds aim_bos_nop(). You may want to send this occassionally
695 - Fixes aim_rxhandlers.c to work for people with three-letter
696 screen names
697
b69540e3 698 - The week prior to Fri Jun 16 19:37:09 UTC 2000
699 - Rethought the rendezvous stuff. DEFINIT WORK IN PROGRESS
700 - Do not bother trying to use this. This will probably break
701 your clients. You may or may not want to fix them, since
702 I may change it again soon.
703 - I REPEAT: This really is a developer-only version. It barely
704 compiles. I'm just committing it so I don't have so many
705 trees floating around.
706 - Added stuff to support OFT as well as OSCAR protocols
707 - Added aim_send_im_direct() for directim ("IM Image")
708 - Added caps getting/putting routines
709 - Added more aim_login fixes to avoid more AOL stupidity
710 - This is the same as went to libfaim-devel yesterday, so don't upgrade
711 just to get these changes.
712 - Removed aimicq_encode_password -- now use the same table
713 for both ICQ and AIM
714 - Added AUTHORS
715
040457cc 716 - Tue Jun 6 01:36:48 UTC 2000
717 - Inverted gethostbyname2() check. Not sure how that ended up
718 in that state.
719 - Added some of the initial framework to support file transfers
720 - Added in a few checks for that
721 - Can currently parse and send a denial message.
722 - Added cookie caching. (Sorry, I just like saying that.)
723 - Rearranged channel 2 ICBM parsing (detects the different
724 rendezvous types better and hopefully accuratly).
725 - Killed the connection array. Now a list. (Suits the
726 upcoming features better.) --- REQUIRES CLIENT CHANGES...
727 - In most cases, you need to change aim_conn_close() calls
728 to aim_conn_kill(). This will free them as well as
729 close them. If you don't do this, you'll pollute the
730 connection list and leak memory.
731 - Possibly a few other minor things (some cleanups to faimtest for one)
732
5e02cf44 733 - Fri Jun 2 23:27:28 UTC 2000
734 - Cleaned up aim_send_login slightly
735 - Added aimicq_encode_password to support the new hash
736 values required for logging in with ICQ
737 - Removed crash when email and/or reg status aren't
738 in the auth response (they're not in ICQ responses)
739 - So now as long as you specify a client version of
740 4.30.3141 in the client info, and your ICQ number
741 as your screen name, you can login to ICQ via libfaim
742 and use it just like an AIM account.
743 - Added AIM_CB_SPECIAL_CONNERR callback for recieving
744 messages such as disconnect reasonses ("you logged
745 on from a different machine", etc).
746 - Added faimtest's userinfo handler to support away messages
747
aa6efcfd 748 - Fri Jun 2 15:57:27 UTC 2000
749 - Add creation time, maxmsglen, and various unknowns to chat info
750 update callback.
751 - Remove 'nothing works yet' comment from top of aim_chat.c (it works!)
752
91931247 753 - Wed May 31 01:17:24 UTC 2000
754 - Added constants for message sizes (MAXMSGLEN, MAXCHATMSGLEN)
755 - Note that the new max message size is defined as 7988bytes,
756 drastically larger than WinAIM lets you put out. This is a
757 libfaim-exclusive feature :)
758 - Reduced base buffer size on aim_send_im()
759
0cc57340 760 - Tue May 30 22:32:31 UTC 2000
761 - Added lock around tx seqnum to prevent that race when transmitting
762 from diverse threads. (actually committed earlier today)
763 - Added aim_meta.c and a few constants and things to keep
764 track of "releases".
765 - Added mkbuildinfo.sh to automatically update build string
766 "constants" on every invocation of 'make all'.
767
e88ba395 768 - Mon May 29 12:08:28 GMT 2000
769 - Rearranged aim_tx_flushqueue(); moved write operation
770 to aim_tx_sendframe()
771 - Turned aim_tx_enqueue() into a macro that calls sess->tx_enqueue,
772 a function pointer to whatever you want to use to enqueue
773 things for transmition (or not)
774 - Old aim_tx_enqueue becomes aim_tx_enqueue__queuebased. Added
775 aim_tx_enqueue__immediate for doing immediate writes. Default
776 is to use queue-based procedure.
777 - Cleaned up parts of aim_conn.c
778 - Added locking around the sockets themselves. Should allow
779 for full cross-thread usage.
780 - Unfortunatly, only pthreads are supported at this time.
781 If you don't have pthreads on your arch, implement the
782 macros your arch needs and send me a patch. (A SysV
783 semaphore implementation would be trivial, as would a
784 simple integer-based lock.)
785
262272cc 786 - Sun May 21 14:59:20 GMT 2000
787 - Added infotype parameter to aim_getinfo() for requesting
788 different types of messages. AIM_GETINFO_GENERALINFO
789 will get you the normal stuff, AIM_GETINFO_AWAYMESSAGE
790 will get the normal stuff, with the profile replaced with
791 the user's away message. Also, the callback adds an
792 unsigned short to the end to give you the value that
793 was originally passed to the request.
794 - There were a few server-pertinent changes that didn't get
795 documented from last month. I have no idea what they were.
796
b1894773 797 - Sun Apr 2 07:29:11 UTC 2000
798 - Redid much of the tx path to remove the superfluous copy. But
799 it touches every function that transmits. Its been a long
800 time in coming.
801 - Added caps parameter to aim_bos_setprofile(). You can now
802 control what capabilties you show up as others to
803 - Added ->capabilities to userinfo. It should be nonzero when
804 its coming off buddy oncoming information, but NOT requested
805 user info.
806
f1a5efe0 807 - Sun Apr 2 01:45:15 UTC 2000
808 - Increased AIM_CONN_MAX from 5 to 7. Precausionary only
809 - Removed deprecated TIS_TELNET_PROXY from faim/faimconfig.h
810 - Added macros for the simple integer functions in aim_util.c
811 - Removed usage of aim_failsaferead()
812 - Still not sure why I had it to begin with. I think it
813 was a remament from when we used non-blocking sockets
814 (which I don't know why I did either)
815 - Removed some of the oddities in aim_get_command()
816 - gprof showed this taking 20kns on my k6-300. Should be faster now.
817 - Added conn parameter. This should prevent aim_select() from
818 getting called too many times in a row.
819
50443ea0 820 - Thu Mar 23 08:45:40 UTC 2000
821 - Removed aim_countconn() > 0 check in aim_select(), its logically redundent
822 - Added aim_putuserinfo() (inverse of aim_extractuserinfo())
823 - Added aim_sendbuddyoncoming/offgoing()
824 - Rearranged loop in rxdispatch()
825 - Remove aim_conn_close() if connections dead in aim_get_command()
826
827 - Thu Mar 23 00:44:32 UTC 2000
828 - Added a check to purge_rxqueue to skip handled commands
829
e6b05d80 830 - Mon Mar 20 05:30:59 UTC 2000
831 - Added some server-only functions for login
832 - Added aim_counttlvchain()
833 - Added aim_sncmp() and aim_snlen()
834
b8d0da45 835 - Sun Mar 19 06:07:52 UTC 2000
836 - Added a parameter to aim_select to return event type
837 - REQUIRES CLIENT CHANGES.
838 - For the most part rewrote the tx and rx queuing code
839 - Should fix many, many outstanding problems in and related
840 to that code, including one that keeps memory from freeing
841 - Fixed several bugs in various places
842 - Reformated a lot of code, and did general cleanups
843 - Should have a generally more robust lib now.
844
0e2be272 845 - Sun Mar 12 00:07:40 UTC 2000
846 - Fixed a robustness problem in aim_handleredirect_middle()
847 - Added TLV chain creation routines (yes, aimd is progressing)
848
7bed1692 849 - Mon Jan 3 04:07:55 UTC 2000
850 - Fixed bug in aim_snac.c
851 - Fixed condition where commands read from connections that have
852 been closed were still left in the queue. Now cancelled.
853 - Added some printfs to aim_info to get more informative crahes
7b66dc87 854 - Fixed a bug in aim_rxqueue::purge
7bed1692 855
0c20631f 856 - Sun Jan 2 10:31:19 UTC 2000
857 - Cleanups in aim_info.c
858 - Can compile with -Ddebug=100 again
859 - Implemented chat: Joining/Leaving, info parsing, IM parsing/sending
860 - Implemented some chatnav: rights req/parsing, room creation
861
862 - Thu Dec 30 10:08:42 UTC 1999
863 - Fixed bug in aim_im.c when (encoding == NULL) || (lang == NULL)
864 - Added detection of voice chat requests
865 - Added AIM_CLASS_* defines, including new Away flag
866 - Added awaymsg parameter to bos_setprofile.
867 - If awaymsg is nonnull, you will be advertised as being away (your
868 class will be ORed with AIM_CLASS_AWAY), otherwise you'll show
869 up normal.
870
0b4acf97 871 - Wed Dec 29 10:06:35 UTC 1999
872 - Fixed small bug in IM parser
873 - Added stubs for the capability TLVs in userinfo.
874
26af6789 875 - Wed Dec 29 09:14:45 UTC 1999
0c20631f 876 - Added a capability block to aim_bos_setprofile. Can now get chat
877 invites again.
26af6789 878 - Extended ICBM parser to support channel 2 messages (chat invites)
0c20631f 879 - A channel parameter has been prepended to the varargs -- REQUIRES
880 CLIENT CHANGES.
26af6789 881 - Extended faimtest to support chat invites.
882 - Changed faimtest to get sn/password from environment
883
01b59e1e 884 - Wed Dec 29 04:17:03 UTC 1999
885 - Added -g to CFLAGS
886 - Added aim_sendconnack() to aim_login.c (needed for newer login)
887 - Added code for the new SNAC-based login/auth procedure. (see SNACLOGIN
888 in faim/faimconfig.h for why its not enabled)
889 - Reimplemented aim_authparse(), aim_handleredirect() using TLVlists
890 - The old auth_failed callback is now integrated into the
891 success one. If there was an error, logininfo->errorcode is nonzero
892 - Fiddled with version information. Added aim_setversions()
893 - Added table of SNAC names for showing unknown snacs (jbm)
894 - Added a middle handler for MOTD
26af6789 895 - Added new authorization SNACs to faim/aim_cbtypes.h
896
a25832e6 897 - Sun Dec 26 22:59:10 UTC 1999
898 - Renamed login_phase1_struct to aim_login_struct
899 - Changed cookie and sn to be static arrays in aim_login_struct
900 - Integrated the Jabber-faim changes. (temas) [BIG CLIENT CHANGES]
901 - Added aim_session_t, removed all global variables
902 - Changed all functions to accept a session pointer
903 - Removed aim_global.c
904 - Updated faimtest to use an aim_session_t.
905 - Removed all cases where logininfo was passed as vararg to client
906 - Fixed small bug in aim_newconn's 'fixing' of host:port addresses
907 - Added an install rule to the makefile (installs headers+so only!)
908 - Enabled USE_SNAC_FOR_IMS by default, assuming it got fixed
909 by n's new aim_snac.c from ages ago
910 - Implemented a middle handler for 0004/0001 message errors, added
911 snacid lookup to get illfated destination SN and pass to client
912 - Implemented a short middle handler for offgoing buddy.
913
adca9dcf 914 - Fri Dec 24 21:30:06 UTC 1999
915 - Added an error-counting Read() that has been sitting in my inbox
916 - Cleaned up header files, created aim_cbtypes.h.
24286d93 917 - Added void * to aim_conn_t for private client use if they want. (Orb)
918 - Removed all stderr output. All output is important, and goes to stdout.
919 - Renamed isautoresponse in IM parser to icbmflags.
920 - Added Orb's fix for the new login code, deleted old (see Orb, I do read
921 your mail....eventually).
922 - Added mailing lists to README.
adca9dcf 923
49c8a2fa 924 - Fri Dec 24 11:12:34 UTC 1999
925 - Cleaned up both outgoing and incoming ICBM handling. Anything
926 that crashes around there is no longer libfaims fault!
927 - The encoding flags are now passed up to the client.
928 - Added several TLV routines to parse large blocks of continuous
929 TLV triplets. Not terribly effecient, but quite elegent in usage.
930 - Added icbm_setparams() back in from way-back-long-ago. It hasn't
931 been implemented in a long time, but I think we should still send it.
932
9de3ca7e 933 - Fri Dec 24 01:23:06 UTC 1999
934 - Fixed a very minor bug in aim_newconn().
935 - Added aimutil_get{16,32}()
936 - Added aim_extractuserinfo() for extracting user data
937 blocks and putting them into struct aim_userinfo_s's.
938 - Added a loop to print out info on extraneous TLVs.
939 - Put in lots of comments.
940 - Added parse_oncoming_middle() to parse the user data
941 block of that packet. Now passes struct aim_userinfo_s
942 to client.
943 - Rearranged parse_userinfo_middle(). Now passes an entire
944 userinfo struct to client instead of individual variables.
945 - Convered the version of parse_im_middle() thats actually getting
946 used to pass up a userinfo struct.
947 - Updated faimtest to accept new structs.
948
949 - Tue Dec 21 06:18:50 UTC 1999
950 - Fixed a Win32 header problem
951 - Tue Dec 21 03:44:13 UTC 1999
952 - Latency timers now update on rx as well as tx. Gets rid of even more
953 of the rate problems that most clients are having.
954 - Renamed lasttx and settxlatency to lastactivity and setlatency, respec.
955 - Integrated fixes needed for Win32 -- should compile cleanly now (DMP)
956 - Cleaned up some places, use aim_putsnac everywhere now.
957
958 - Sun Sep 26 20:04:20 MST 1999
959 - Reduced the IM parsing to look for 3 zeros instead of 4 -- NEEDS WORK
960 - This was needed to work with MacAIM3 and some WinAIM3s.
961 - Added aim_conn_settxlatency() for throttling outgoing frames -- NEEDS WORK
962 - Added an int to the userinfo and incoming IM user callbacks for new
963 TLV that AOL put it in -- its the number of seconds elapsed since
964 the user logged in
965 - Worked more on the callbacks (more internal rearrangements)
966 - Fixed bug in aim_select() (returning negative fds)
967 - Clear out logininfo struct before putting more data into it
968 - Other bugfixes that I can't particularly remember.
969
970 - Tue Aug 24 03:13:12 UTC 1999 --- TRANSITION RELEASE!!
971 - Added jbm's new aim_rxqueue.c, which should crash less
972 - Started the overhaul on the callback system. No where near complete yet.
973
974 - Sun Aug 1 03:02:17 UTC 1999
975 - Added aimutil_*()s in aim_util.c for raw byte placement
976 - Cleaned up aim_im.c, aim_auth.c, and aim_login.c using aimutil_*
977 - Added AIM_IMFLAGS, flags option to aim_send_im(), removed
978 aim_send_im_away()
979 - Added client_info parameter to aim_send_login()
980 - Tweaked aim_send_im() (AOL changed a few things, there's some more
981 changes left to do)
982 - Some Chat stuff changed, still no where near functional
983 - Finally remembered to switch the license to LGPL (from GPL)
984 - Permit/Deny (blocking) list support added
985 - Released a snapshot
986
987 - Sat Jul 31 05:28:38 UTC 1999
988 - Changed aim_bos_setdeny() to aim_bos_changevisibility() and actually
989 did the implementation.
990
991 - Fri Jul 23 17:45:22 UTC 1999
992 - Work around for the AOL change in IP syntax (thanks to Eric Peyton)
993 - Released snapshot
994
995 - Sun Apr 25 23:31:44 UTC 1999
996 - Fixed stupid off-by-one bug in aim_logoff()
997
998 - Sun Apr 25 22:43:31 UTC 1999
999 - Renamed/reclassified missed IM errors (now all callbacks -- no backend handling)
1000 - Killed aim_login() -- all connections now opened in frontend
1001 - aim_conn_close() will not close fd's < 3
1002 - Released snapshot.
1003
1004 - Sat Apr 10 22:44:07 UTC 1999
1005 - Changed how rx_command->handled works; now uses return value from callback
1006 - Changed the if's in the dispatcher (aim_rxhandlers.c) to switch()es
1007
1008 - Sat Apr 10 03:51:21 UTC 1999
1009 - Started CHANGES
1010 - Put in n's aim_snac.c.
1011 - Updated aim_{add,remove}_buddy() to use aim_conn
1012 - Updated aim_usersearch_address() to use aim_conn
1013 - Cleaned up aim.h a bit (removed old *phase* protos)
1014 - Changed gethostbyname() to gethostbyname2() (for MacOS X)
1015 - Changed aim_newconn() to pass connection errors in connstruct->status
1016 - Updated faimtest.c to detect connection errors
1017 - Fixed a small typo in aim_im::aim_parse_incoming_im_middle()
1018 - Added free()s in that function and to userinfo counterpart (fewer leaks)
1019 - Released snapshot
1020
1021 - Sat Apr 3 06:43:14 UTC 1999
1022 - Released snapshot
1023
1024 - Wed Dec 30 01:20:59 MST 1998
1025 - Released snapshot
1026
1027 - Mon Dec 7 16:57:57 MST 1998
1028 - Released snapshot
1029
1030 - Sat Dec 5 00:01:53 MST 1998
1031 - Released snapshot
1032
1033 - Thu Nov 26 17:50:02 MST 1998
1034 - Released snapshot
This page took 2.921295 seconds and 5 git commands to generate.