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