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