]> andersk Git - libfaim.git/blob - CHANGES
Fix the small bug in aim_newcon.
[libfaim.git] / CHANGES
1
2 No release numbers
3 ------------------
4  - Sun Dec 26 22:59:10 UTC 1999
5    - Renamed login_phase1_struct to aim_login_struct
6    - Changed cookie and sn to be static arrays in aim_login_struct
7    - Integrated the Jabber-faim changes.  (temas)  [BIG CLIENT CHANGES]
8      - Added aim_session_t, removed all global variables
9      - Changed all functions to accept a session pointer
10      - Removed aim_global.c
11      - Updated faimtest to use an aim_session_t.
12      - Removed all cases where logininfo was passed as vararg to client
13    - Fixed small bug in aim_newconn's 'fixing' of host:port addresses
14    - Added an install rule to the makefile (installs headers+so only!)
15    - Enabled USE_SNAC_FOR_IMS by default, assuming it got fixed
16        by n's new aim_snac.c from ages ago
17    - Implemented a middle handler for 0004/0001 message errors, added
18        snacid lookup to get illfated destination SN and pass to client
19    - Implemented a short middle handler for offgoing buddy.
20
21  - Fri Dec 24 21:30:06 UTC 1999
22    - Added an error-counting Read() that has been sitting in my inbox
23    - Cleaned up header files, created aim_cbtypes.h.
24    - Added void * to aim_conn_t for private client use if they want. (Orb)
25    - Removed all stderr output.  All output is important, and goes to stdout.
26    - Renamed isautoresponse in IM parser to icbmflags.
27    - Added Orb's fix for the new login code, deleted old (see Orb, I do read
28        your mail....eventually).
29    - Added mailing lists to README.
30
31  - Fri Dec 24 11:12:34 UTC 1999
32    - Cleaned up both outgoing and incoming ICBM handling.  Anything
33        that crashes around there is no longer libfaims fault!
34        - The encoding flags are now passed up to the client.
35    - Added several TLV routines to parse large blocks of continuous
36        TLV triplets.  Not terribly effecient, but quite elegent in usage.
37    - Added icbm_setparams() back in from way-back-long-ago.  It hasn't
38        been implemented in a long time, but I think we should still send it.
39
40  - Fri Dec 24 01:23:06 UTC 1999
41    - Fixed a very minor bug in aim_newconn().
42    - Added aimutil_get{16,32}()
43    - Added aim_extractuserinfo() for extracting  user data
44        blocks and putting them into struct aim_userinfo_s's.
45          - Added a loop to print out info on extraneous TLVs.
46          - Put in lots of comments.
47    - Added parse_oncoming_middle() to parse the user data
48        block of that packet.  Now passes struct aim_userinfo_s
49        to client.
50    - Rearranged parse_userinfo_middle().  Now passes an entire
51        userinfo struct to client instead of individual variables.
52    - Convered the version of parse_im_middle() thats actually getting
53        used to pass up a userinfo struct.  
54    - Updated faimtest to accept new structs.
55
56  - Tue Dec 21 06:18:50 UTC 1999
57    - Fixed a Win32 header problem
58  - Tue Dec 21 03:44:13 UTC 1999
59    - Latency timers now update on rx as well as tx.  Gets rid of even more
60        of the rate problems that most clients are having.  
61    - Renamed lasttx and settxlatency to lastactivity and setlatency, respec.
62    - Integrated fixes needed for Win32 -- should compile cleanly now (DMP)
63    - Cleaned up some places, use aim_putsnac everywhere now.
64
65  - Sun Sep 26 20:04:20 MST 1999
66    - Reduced the IM parsing to look for 3 zeros instead of 4 -- NEEDS WORK
67        - This was needed to work with MacAIM3 and some WinAIM3s.
68    - Added aim_conn_settxlatency() for throttling outgoing frames -- NEEDS WORK
69    - Added an int to the userinfo and incoming IM user callbacks for new
70        TLV that AOL put it in -- its the number of seconds elapsed since
71        the user logged in
72    - Worked more on the callbacks (more internal rearrangements)
73    - Fixed bug in aim_select() (returning negative fds)
74    - Clear out logininfo struct before putting more data into it
75    - Other bugfixes that I can't particularly remember.
76
77  - Tue Aug 24 03:13:12 UTC 1999   --- TRANSITION RELEASE!!
78    - Added jbm's new aim_rxqueue.c, which should crash less
79    - Started the overhaul on the callback system.  No where near complete yet.
80
81  - Sun Aug  1 03:02:17 UTC 1999
82    - Added aimutil_*()s in aim_util.c for raw byte placement
83    - Cleaned up aim_im.c, aim_auth.c, and aim_login.c using aimutil_*
84    - Added AIM_IMFLAGS, flags option to aim_send_im(), removed
85        aim_send_im_away()
86    - Added client_info parameter to aim_send_login()
87    - Tweaked aim_send_im() (AOL changed a few things, there's some more
88        changes left to do)
89    - Some Chat stuff changed, still no where near functional
90    - Finally remembered to switch the license to LGPL (from GPL)
91    - Permit/Deny (blocking) list support added
92    - Released a snapshot
93
94  - Sat Jul 31 05:28:38 UTC 1999
95    - Changed aim_bos_setdeny() to aim_bos_changevisibility() and actually
96        did the implementation.  
97
98  - Fri Jul 23 17:45:22 UTC 1999
99    - Work around for the AOL change in IP syntax (thanks to Eric Peyton)
100    - Released snapshot
101
102  - Sun Apr 25 23:31:44 UTC 1999
103    - Fixed stupid off-by-one bug in aim_logoff()
104
105  - Sun Apr 25 22:43:31 UTC 1999
106    - Renamed/reclassified missed IM errors (now all callbacks -- no backend handling)
107    - Killed aim_login() -- all connections now opened in frontend
108    - aim_conn_close() will not close fd's < 3
109    - Released snapshot.
110
111  - Sat Apr 10 22:44:07 UTC 1999
112    - Changed how rx_command->handled works; now uses return value from callback
113    - Changed the if's in the dispatcher (aim_rxhandlers.c) to switch()es
114
115  - Sat Apr 10 03:51:21 UTC 1999
116    - Started CHANGES
117    - Put in n's aim_snac.c.
118    - Updated aim_{add,remove}_buddy() to use aim_conn
119    - Updated aim_usersearch_address() to use aim_conn
120    - Cleaned up aim.h a bit (removed old *phase* protos)
121    - Changed gethostbyname() to gethostbyname2() (for MacOS X)
122    - Changed aim_newconn() to pass connection errors in connstruct->status
123      - Updated faimtest.c to detect connection errors
124    - Fixed a small typo in aim_im::aim_parse_incoming_im_middle()
125    - Added free()s in that function and to userinfo counterpart (fewer leaks)
126    - Released snapshot
127
128  - Sat Apr  3 06:43:14 UTC 1999
129    - Released snapshot
130
131  - Wed Dec 30 01:20:59 MST 1998
132    - Released snapshot
133
134  - Mon Dec  7 16:57:57 MST 1998
135    - Released snapshot
136
137  - Sat Dec  5 00:01:53 MST 1998
138    - Released snapshot
139  
140  - Thu Nov 26 17:50:02 MST 1998
141    -  Released snapshot
This page took 0.078303 seconds and 5 git commands to generate.