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