]> andersk Git - libfaim.git/blame - CHANGES
- Mon Jun 26 07:53:02 UTC 2000
[libfaim.git] / CHANGES
CommitLineData
9de3ca7e 1
2No release numbers
3------------------
e5012450 4 - Mon Jun 26 07:53:02 UTC 2000
5 - Added utils/aimdebugd for playing with things -- see the README
6 - Added aim_im.c::aim_parse_outgoing_im(). Probably not useful
7 unless you're writing a server or something (or hacking aimdebugd).
8 - aim_send_im() now sends the same data as AIM4 does (three more bytes)
9 - Added aim_debugconn_sendconnect() for aimdebugd-enablement.
10
81d7797e 11 - Sat Jun 24 02:14:07 UTC 2000
12 - Added fakelocks for platforms without pthreads or that have no
13 use for them.
14 - Added workaround for MSG_WAITALL for people with the very broken
15 libc that comes with earlier Red Hat's.
16
68ac63c2 17 - Sat Jun 24 00:44:24 UTC 2000
18 - Support zero-type TLVs in aim_extractinfo()
19 - AOL now ocassionally throws extra zeros in so in order to break
20 clients. Aparently zero-type TLVs are a special case -- if the
21 type is zero, then _there is no length_ field. AOL are geniuses.
22 - Note that you only get these if you send a bad client string, such
23 as the top one in faimtest. If you #if 0 that one out and use the
24 second one, you'll be fine. (Unless you just want to see the message
25 for yourself. Its nifty. (FREE!))
26 - ICBM parser now uses aim_extractuserinfo() so that it can benefit
27 from the above changes, as well as clean up the whole "is it the
28 first or the second one of this type?" issue
29 - This also fixes the changes AOL made in away messages.
30 = Fixed a possible buffer overflow when AOL changes the max sn length
31 - Increased MAXSNLEN to 32 (they appear to be valid)
32 - If you start getting messages from someone called "AOL Instant
33 Messenger", see comment one, paragraph two.
34 - aim_select() now returns a -1 if there are no connections open
35 - Connections are now killed completely if there is a major error on them
36 - faimtest now calls aim_logoff() on connection error
37
f0a7908e 38 - Fri Jun 23 22:38:47 UTC 2000
39 - Adds start of adverts support
40 - Adds aim_bos_nop(). You may want to send this occassionally
41 - Fixes aim_rxhandlers.c to work for people with three-letter
42 screen names
43
b69540e3 44 - The week prior to Fri Jun 16 19:37:09 UTC 2000
45 - Rethought the rendezvous stuff. DEFINIT WORK IN PROGRESS
46 - Do not bother trying to use this. This will probably break
47 your clients. You may or may not want to fix them, since
48 I may change it again soon.
49 - I REPEAT: This really is a developer-only version. It barely
50 compiles. I'm just committing it so I don't have so many
51 trees floating around.
52 - Added stuff to support OFT as well as OSCAR protocols
53 - Added aim_send_im_direct() for directim ("IM Image")
54 - Added caps getting/putting routines
55 - Added more aim_login fixes to avoid more AOL stupidity
56 - This is the same as went to libfaim-devel yesterday, so don't upgrade
57 just to get these changes.
58 - Removed aimicq_encode_password -- now use the same table
59 for both ICQ and AIM
60 - Added AUTHORS
61
040457cc 62 - Tue Jun 6 01:36:48 UTC 2000
63 - Inverted gethostbyname2() check. Not sure how that ended up
64 in that state.
65 - Added some of the initial framework to support file transfers
66 - Added in a few checks for that
67 - Can currently parse and send a denial message.
68 - Added cookie caching. (Sorry, I just like saying that.)
69 - Rearranged channel 2 ICBM parsing (detects the different
70 rendezvous types better and hopefully accuratly).
71 - Killed the connection array. Now a list. (Suits the
72 upcoming features better.) --- REQUIRES CLIENT CHANGES...
73 - In most cases, you need to change aim_conn_close() calls
74 to aim_conn_kill(). This will free them as well as
75 close them. If you don't do this, you'll pollute the
76 connection list and leak memory.
77 - Possibly a few other minor things (some cleanups to faimtest for one)
78
5e02cf44 79 - Fri Jun 2 23:27:28 UTC 2000
80 - Cleaned up aim_send_login slightly
81 - Added aimicq_encode_password to support the new hash
82 values required for logging in with ICQ
83 - Removed crash when email and/or reg status aren't
84 in the auth response (they're not in ICQ responses)
85 - So now as long as you specify a client version of
86 4.30.3141 in the client info, and your ICQ number
87 as your screen name, you can login to ICQ via libfaim
88 and use it just like an AIM account.
89 - Added AIM_CB_SPECIAL_CONNERR callback for recieving
90 messages such as disconnect reasonses ("you logged
91 on from a different machine", etc).
92 - Added faimtest's userinfo handler to support away messages
93
aa6efcfd 94 - Fri Jun 2 15:57:27 UTC 2000
95 - Add creation time, maxmsglen, and various unknowns to chat info
96 update callback.
97 - Remove 'nothing works yet' comment from top of aim_chat.c (it works!)
98
91931247 99 - Wed May 31 01:17:24 UTC 2000
100 - Added constants for message sizes (MAXMSGLEN, MAXCHATMSGLEN)
101 - Note that the new max message size is defined as 7988bytes,
102 drastically larger than WinAIM lets you put out. This is a
103 libfaim-exclusive feature :)
104 - Reduced base buffer size on aim_send_im()
105
0cc57340 106 - Tue May 30 22:32:31 UTC 2000
107 - Added lock around tx seqnum to prevent that race when transmitting
108 from diverse threads. (actually committed earlier today)
109 - Added aim_meta.c and a few constants and things to keep
110 track of "releases".
111 - Added mkbuildinfo.sh to automatically update build string
112 "constants" on every invocation of 'make all'.
113
e88ba395 114 - Mon May 29 12:08:28 GMT 2000
115 - Rearranged aim_tx_flushqueue(); moved write operation
116 to aim_tx_sendframe()
117 - Turned aim_tx_enqueue() into a macro that calls sess->tx_enqueue,
118 a function pointer to whatever you want to use to enqueue
119 things for transmition (or not)
120 - Old aim_tx_enqueue becomes aim_tx_enqueue__queuebased. Added
121 aim_tx_enqueue__immediate for doing immediate writes. Default
122 is to use queue-based procedure.
123 - Cleaned up parts of aim_conn.c
124 - Added locking around the sockets themselves. Should allow
125 for full cross-thread usage.
126 - Unfortunatly, only pthreads are supported at this time.
127 If you don't have pthreads on your arch, implement the
128 macros your arch needs and send me a patch. (A SysV
129 semaphore implementation would be trivial, as would a
130 simple integer-based lock.)
131
262272cc 132 - Sun May 21 14:59:20 GMT 2000
133 - Added infotype parameter to aim_getinfo() for requesting
134 different types of messages. AIM_GETINFO_GENERALINFO
135 will get you the normal stuff, AIM_GETINFO_AWAYMESSAGE
136 will get the normal stuff, with the profile replaced with
137 the user's away message. Also, the callback adds an
138 unsigned short to the end to give you the value that
139 was originally passed to the request.
140 - There were a few server-pertinent changes that didn't get
141 documented from last month. I have no idea what they were.
142
b1894773 143 - Sun Apr 2 07:29:11 UTC 2000
144 - Redid much of the tx path to remove the superfluous copy. But
145 it touches every function that transmits. Its been a long
146 time in coming.
147 - Added caps parameter to aim_bos_setprofile(). You can now
148 control what capabilties you show up as others to
149 - Added ->capabilities to userinfo. It should be nonzero when
150 its coming off buddy oncoming information, but NOT requested
151 user info.
152
f1a5efe0 153 - Sun Apr 2 01:45:15 UTC 2000
154 - Increased AIM_CONN_MAX from 5 to 7. Precausionary only
155 - Removed deprecated TIS_TELNET_PROXY from faim/faimconfig.h
156 - Added macros for the simple integer functions in aim_util.c
157 - Removed usage of aim_failsaferead()
158 - Still not sure why I had it to begin with. I think it
159 was a remament from when we used non-blocking sockets
160 (which I don't know why I did either)
161 - Removed some of the oddities in aim_get_command()
162 - gprof showed this taking 20kns on my k6-300. Should be faster now.
163 - Added conn parameter. This should prevent aim_select() from
164 getting called too many times in a row.
165
50443ea0 166 - Thu Mar 23 08:45:40 UTC 2000
167 - Removed aim_countconn() > 0 check in aim_select(), its logically redundent
168 - Added aim_putuserinfo() (inverse of aim_extractuserinfo())
169 - Added aim_sendbuddyoncoming/offgoing()
170 - Rearranged loop in rxdispatch()
171 - Remove aim_conn_close() if connections dead in aim_get_command()
172
173 - Thu Mar 23 00:44:32 UTC 2000
174 - Added a check to purge_rxqueue to skip handled commands
175
e6b05d80 176 - Mon Mar 20 05:30:59 UTC 2000
177 - Added some server-only functions for login
178 - Added aim_counttlvchain()
179 - Added aim_sncmp() and aim_snlen()
180
b8d0da45 181 - Sun Mar 19 06:07:52 UTC 2000
182 - Added a parameter to aim_select to return event type
183 - REQUIRES CLIENT CHANGES.
184 - For the most part rewrote the tx and rx queuing code
185 - Should fix many, many outstanding problems in and related
186 to that code, including one that keeps memory from freeing
187 - Fixed several bugs in various places
188 - Reformated a lot of code, and did general cleanups
189 - Should have a generally more robust lib now.
190
0e2be272 191 - Sun Mar 12 00:07:40 UTC 2000
192 - Fixed a robustness problem in aim_handleredirect_middle()
193 - Added TLV chain creation routines (yes, aimd is progressing)
194
7bed1692 195 - Mon Jan 3 04:07:55 UTC 2000
196 - Fixed bug in aim_snac.c
197 - Fixed condition where commands read from connections that have
198 been closed were still left in the queue. Now cancelled.
199 - Added some printfs to aim_info to get more informative crahes
7b66dc87 200 - Fixed a bug in aim_rxqueue::purge
7bed1692 201
0c20631f 202 - Sun Jan 2 10:31:19 UTC 2000
203 - Cleanups in aim_info.c
204 - Can compile with -Ddebug=100 again
205 - Implemented chat: Joining/Leaving, info parsing, IM parsing/sending
206 - Implemented some chatnav: rights req/parsing, room creation
207
208 - Thu Dec 30 10:08:42 UTC 1999
209 - Fixed bug in aim_im.c when (encoding == NULL) || (lang == NULL)
210 - Added detection of voice chat requests
211 - Added AIM_CLASS_* defines, including new Away flag
212 - Added awaymsg parameter to bos_setprofile.
213 - If awaymsg is nonnull, you will be advertised as being away (your
214 class will be ORed with AIM_CLASS_AWAY), otherwise you'll show
215 up normal.
216
0b4acf97 217 - Wed Dec 29 10:06:35 UTC 1999
218 - Fixed small bug in IM parser
219 - Added stubs for the capability TLVs in userinfo.
220
26af6789 221 - Wed Dec 29 09:14:45 UTC 1999
0c20631f 222 - Added a capability block to aim_bos_setprofile. Can now get chat
223 invites again.
26af6789 224 - Extended ICBM parser to support channel 2 messages (chat invites)
0c20631f 225 - A channel parameter has been prepended to the varargs -- REQUIRES
226 CLIENT CHANGES.
26af6789 227 - Extended faimtest to support chat invites.
228 - Changed faimtest to get sn/password from environment
229
01b59e1e 230 - Wed Dec 29 04:17:03 UTC 1999
231 - Added -g to CFLAGS
232 - Added aim_sendconnack() to aim_login.c (needed for newer login)
233 - Added code for the new SNAC-based login/auth procedure. (see SNACLOGIN
234 in faim/faimconfig.h for why its not enabled)
235 - Reimplemented aim_authparse(), aim_handleredirect() using TLVlists
236 - The old auth_failed callback is now integrated into the
237 success one. If there was an error, logininfo->errorcode is nonzero
238 - Fiddled with version information. Added aim_setversions()
239 - Added table of SNAC names for showing unknown snacs (jbm)
240 - Added a middle handler for MOTD
26af6789 241 - Added new authorization SNACs to faim/aim_cbtypes.h
242
a25832e6 243 - Sun Dec 26 22:59:10 UTC 1999
244 - Renamed login_phase1_struct to aim_login_struct
245 - Changed cookie and sn to be static arrays in aim_login_struct
246 - Integrated the Jabber-faim changes. (temas) [BIG CLIENT CHANGES]
247 - Added aim_session_t, removed all global variables
248 - Changed all functions to accept a session pointer
249 - Removed aim_global.c
250 - Updated faimtest to use an aim_session_t.
251 - Removed all cases where logininfo was passed as vararg to client
252 - Fixed small bug in aim_newconn's 'fixing' of host:port addresses
253 - Added an install rule to the makefile (installs headers+so only!)
254 - Enabled USE_SNAC_FOR_IMS by default, assuming it got fixed
255 by n's new aim_snac.c from ages ago
256 - Implemented a middle handler for 0004/0001 message errors, added
257 snacid lookup to get illfated destination SN and pass to client
258 - Implemented a short middle handler for offgoing buddy.
259
adca9dcf 260 - Fri Dec 24 21:30:06 UTC 1999
261 - Added an error-counting Read() that has been sitting in my inbox
262 - Cleaned up header files, created aim_cbtypes.h.
24286d93 263 - Added void * to aim_conn_t for private client use if they want. (Orb)
264 - Removed all stderr output. All output is important, and goes to stdout.
265 - Renamed isautoresponse in IM parser to icbmflags.
266 - Added Orb's fix for the new login code, deleted old (see Orb, I do read
267 your mail....eventually).
268 - Added mailing lists to README.
adca9dcf 269
49c8a2fa 270 - Fri Dec 24 11:12:34 UTC 1999
271 - Cleaned up both outgoing and incoming ICBM handling. Anything
272 that crashes around there is no longer libfaims fault!
273 - The encoding flags are now passed up to the client.
274 - Added several TLV routines to parse large blocks of continuous
275 TLV triplets. Not terribly effecient, but quite elegent in usage.
276 - Added icbm_setparams() back in from way-back-long-ago. It hasn't
277 been implemented in a long time, but I think we should still send it.
278
9de3ca7e 279 - Fri Dec 24 01:23:06 UTC 1999
280 - Fixed a very minor bug in aim_newconn().
281 - Added aimutil_get{16,32}()
282 - Added aim_extractuserinfo() for extracting user data
283 blocks and putting them into struct aim_userinfo_s's.
284 - Added a loop to print out info on extraneous TLVs.
285 - Put in lots of comments.
286 - Added parse_oncoming_middle() to parse the user data
287 block of that packet. Now passes struct aim_userinfo_s
288 to client.
289 - Rearranged parse_userinfo_middle(). Now passes an entire
290 userinfo struct to client instead of individual variables.
291 - Convered the version of parse_im_middle() thats actually getting
292 used to pass up a userinfo struct.
293 - Updated faimtest to accept new structs.
294
295 - Tue Dec 21 06:18:50 UTC 1999
296 - Fixed a Win32 header problem
297 - Tue Dec 21 03:44:13 UTC 1999
298 - Latency timers now update on rx as well as tx. Gets rid of even more
299 of the rate problems that most clients are having.
300 - Renamed lasttx and settxlatency to lastactivity and setlatency, respec.
301 - Integrated fixes needed for Win32 -- should compile cleanly now (DMP)
302 - Cleaned up some places, use aim_putsnac everywhere now.
303
304 - Sun Sep 26 20:04:20 MST 1999
305 - Reduced the IM parsing to look for 3 zeros instead of 4 -- NEEDS WORK
306 - This was needed to work with MacAIM3 and some WinAIM3s.
307 - Added aim_conn_settxlatency() for throttling outgoing frames -- NEEDS WORK
308 - Added an int to the userinfo and incoming IM user callbacks for new
309 TLV that AOL put it in -- its the number of seconds elapsed since
310 the user logged in
311 - Worked more on the callbacks (more internal rearrangements)
312 - Fixed bug in aim_select() (returning negative fds)
313 - Clear out logininfo struct before putting more data into it
314 - Other bugfixes that I can't particularly remember.
315
316 - Tue Aug 24 03:13:12 UTC 1999 --- TRANSITION RELEASE!!
317 - Added jbm's new aim_rxqueue.c, which should crash less
318 - Started the overhaul on the callback system. No where near complete yet.
319
320 - Sun Aug 1 03:02:17 UTC 1999
321 - Added aimutil_*()s in aim_util.c for raw byte placement
322 - Cleaned up aim_im.c, aim_auth.c, and aim_login.c using aimutil_*
323 - Added AIM_IMFLAGS, flags option to aim_send_im(), removed
324 aim_send_im_away()
325 - Added client_info parameter to aim_send_login()
326 - Tweaked aim_send_im() (AOL changed a few things, there's some more
327 changes left to do)
328 - Some Chat stuff changed, still no where near functional
329 - Finally remembered to switch the license to LGPL (from GPL)
330 - Permit/Deny (blocking) list support added
331 - Released a snapshot
332
333 - Sat Jul 31 05:28:38 UTC 1999
334 - Changed aim_bos_setdeny() to aim_bos_changevisibility() and actually
335 did the implementation.
336
337 - Fri Jul 23 17:45:22 UTC 1999
338 - Work around for the AOL change in IP syntax (thanks to Eric Peyton)
339 - Released snapshot
340
341 - Sun Apr 25 23:31:44 UTC 1999
342 - Fixed stupid off-by-one bug in aim_logoff()
343
344 - Sun Apr 25 22:43:31 UTC 1999
345 - Renamed/reclassified missed IM errors (now all callbacks -- no backend handling)
346 - Killed aim_login() -- all connections now opened in frontend
347 - aim_conn_close() will not close fd's < 3
348 - Released snapshot.
349
350 - Sat Apr 10 22:44:07 UTC 1999
351 - Changed how rx_command->handled works; now uses return value from callback
352 - Changed the if's in the dispatcher (aim_rxhandlers.c) to switch()es
353
354 - Sat Apr 10 03:51:21 UTC 1999
355 - Started CHANGES
356 - Put in n's aim_snac.c.
357 - Updated aim_{add,remove}_buddy() to use aim_conn
358 - Updated aim_usersearch_address() to use aim_conn
359 - Cleaned up aim.h a bit (removed old *phase* protos)
360 - Changed gethostbyname() to gethostbyname2() (for MacOS X)
361 - Changed aim_newconn() to pass connection errors in connstruct->status
362 - Updated faimtest.c to detect connection errors
363 - Fixed a small typo in aim_im::aim_parse_incoming_im_middle()
364 - Added free()s in that function and to userinfo counterpart (fewer leaks)
365 - Released snapshot
366
367 - Sat Apr 3 06:43:14 UTC 1999
368 - Released snapshot
369
370 - Wed Dec 30 01:20:59 MST 1998
371 - Released snapshot
372
373 - Mon Dec 7 16:57:57 MST 1998
374 - Released snapshot
375
376 - Sat Dec 5 00:01:53 MST 1998
377 - Released snapshot
378
379 - Thu Nov 26 17:50:02 MST 1998
380 - Released snapshot
This page took 0.93037 seconds and 5 git commands to generate.