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