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