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