aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn
Commit message (Collapse)AuthorAgeLines
...
* | Renamed some more prpl functions.Wilmer van der Gaast2007-04-20-5/+5
| |
* | Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-12/+12
| |
* | More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-04-18-10/+18
| | | | | | | | | | | | | | | | | | callback, it's only called from inside IM-modules. This makes sure a buddy only gets added to the BitlBee structures if the add was successful. This gets rid of the weirdness described in #55. Unfortunately for now this change breaks A) automatic renaming of ICQ contacts (if there are names stored in the contact list) B) add -tmp.
* | API cleanup pretty much complete. Fixed pretty much everything except theWilmer van der Gaast2007-04-16-3/+3
| | | | | | | | | | buddy/groupchat related functions.
* | Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-04-15-14/+5
| | | | | | | | | | | | | | one isn't implemented yet, but I'll do that later.) At last I got rid of the hack called get_status_string(). And now Yahoo seems to mess up away messages...
* | s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h aWilmer van der Gaast2007-04-15-49/+49
| | | | | | | | | | | | little bit, grouping things by category instead of original Gaim 0.58 filename.
* | Cleaned up struct im_connection. No more username/password stuff sinceWilmer van der Gaast2007-04-15-42/+44
| | | | | | | | | | it's in acc too. wants_to_die is now an argument to imc_logout().
* | Now that all these functions take format strings, I have to make sure IWilmer van der Gaast2007-04-05-8/+2
| | | | | | | | | | use that and don't introduce vulnerabilities. :-)
* | More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-04-05-79/+77
| | | | | | | | | | | | | | | | do_error_dialog() and (set|hide)_login_progress(_error)?() with things that hopefully make more sense. Although it's still not really great...
* | s/gaim_connection/im_connection/ and some other minor API changes. The restWilmer van der Gaast2007-03-30-251/+251
| | | | | | | | | | | | will come tomorrow. It compiles, I'll leave the real testing up to someone else. ;-)
* | Preparing for Jabber conference room support.Wilmer van der Gaast2007-03-27-26/+25
| |
* | Merging new Jabber module. See the massive changelog for all the coolWilmer van der Gaast2007-02-18-4/+5
|\ \ | |/ |/| | | | | improvements. :-)
| * Merge from main tree.Wilmer van der Gaast2006-10-22-9/+8
| |\
| * \ Merge from devel.Wilmer van der Gaast2006-10-15-0/+1
| |\ \
| * \ \ Merging from main development tree.Wilmer van der Gaast2006-10-15-1/+0
| |\ \ \
| * \ \ \ Merging from devel and storage-xml.Wilmer van der Gaast2006-10-15-66/+41
| |\ \ \ \
| * | | | | Implemented a list of away states, using this for a better set_away(), andWilmer van der Gaast2006-09-23-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | got rid of the double <presence> tag sent because of presence_announce().
| | | | | |
| \ \ \ \ \
*-. \ \ \ \ \ Merging trees.Wilmer van der Gaast2006-12-22-6/+12
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | |
| | * | | | | [merge] wilmerJelmer Vernooij2006-12-05-92/+112
| | |\ \ \ \ \ | |_|/ / / / / |/| | | | | |
| | * | | | | Add support for checking test suite coverage using gcov.Jelmer Vernooij2006-07-07-0/+3
| | | | | | |
| * | | | | | MSN message packets are now sent at once instead of separately. ProbablyWilmer van der Gaast2006-10-24-6/+9
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | the MSN servers don't care, but it looks a bit prettier in wireshark. ;-)
* | | | | / "Restructured" msn_login() a little bit.Wilmer van der Gaast2006-10-21-9/+8
| |_|_|_|/ |/| | | |
* | | | | Fixing early free(). Memory management in the passport code is getting tooWilmer van der Gaast2006-10-15-0/+1
| |_|_|/ |/| | | | | | | | | | | | | | | messy, really... :-(
* | | | Fixed a very interesting memory leak in the OSCAR module.Wilmer van der Gaast2006-10-15-1/+0
| |_|/ |/| |
* | | Merging from devel.Wilmer van der Gaast2006-10-15-66/+41
|\ \ \ | |_|/ |/| |
| * | Fixed some memory leaking in the MSN Passport code.Wilmer van der Gaast2006-10-13-11/+11
| | |
| * | Added msn_http_encode() so it can be used in msn_buddy_list_add() too.Wilmer van der Gaast2006-08-25-21/+30
| | | | | | | | | | | | | | | Most likely fixes #198.
| * | Copy-paste considered harmful + Fixed double handling of gc->permit/denyWilmer van der Gaast2006-07-27-35/+0
| |/ | | | | | | | | which actually broke the block/allow commands.
* | Merging from main.Wilmer van der Gaast2006-07-14-0/+2
|\|
| * Completed [167]. (Memory leak wasn't completely fixed yet.)Wilmer van der Gaast2006-07-03-0/+2
| |
* | Implemented per-account nick lists instead of per-protocol nick lists.Wilmer van der Gaast2006-07-03-1/+1
| | | | | | | | | | | | | | | | | | | | nick_t is dead, instead nicks are just saves in a per-account_t GLib hash table. While doing this, the import_buddies command finally died and text_save() disappeared, because the old file format can't handle most of the new features in this branch anyway. Still have to implement support for the new nick lists in text_load()!
* | Added display_name setting for MSN connections. (Should replace the nickWilmer van der Gaast2006-07-03-30/+76
| | | | | | | | | | command later.)
* | Got rid of struct aim_user (now using account_t everywhere). Needs some moreWilmer van der Gaast2006-07-01-3/+3
|/ | | | | testing though.
* Fixed md->grouplist memory leak.Wilmer van der Gaast2006-06-21-0/+2
|
* Merging libevent branch: Events can now be handles by both glib and libevent.Wilmer van der Gaast2006-06-21-16/+28
|\
| * Merging from main/jelmer.Wilmer van der Gaast2006-05-29-13/+41
| |\
| * | Moved everything to the BitlBee event handling API.Wilmer van der Gaast2006-05-10-16/+28
| | |
* | | Fixed a (very rare, AFAIK) NULL-pointer dereference.Wilmer van der Gaast2006-06-12-24/+27
| |/ |/|
* | Using http_dorequest_url() at one place in passport.c now.Wilmer van der Gaast2006-05-27-3/+2
| |
* | Added error_string variable to Passport client.Wilmer van der Gaast2006-05-27-6/+33
| |
* | Added SB_FATAL to MSN errorcode 911 so BitlBee won't disconnect from MSNWilmer van der Gaast2006-05-26-5/+7
|/ | | | | completely when a switchboard connection sends that error code.
* Added/Fixed calls to show_got_added() in all IM-modules, now to fill in thatWilmer van der Gaast2006-04-03-0/+3
| | | | | call. (It should ask the user if he/she wants to add a buddy to his/her list.)
* ns.c now passess the first group a buddy is in.Wilmer van der Gaast2006-03-21-1/+7
|
* Basic handling of LSG responses.Wilmer van der Gaast2006-03-21-26/+22
|
* Stupid warnings. :-PWilmer van der Gaast2006-03-18-3/+0
|
* Fixed #111, Jabber away states get set correctly at connect-time now.Wilmer van der Gaast2006-03-18-8/+0
|
* Fixed a very stupid bug in the "Closing switchboard with unsent messages"Wilmer van der Gaast2006-03-17-4/+4
| | | | | | warning message. There's still another problem with switchboar management somewhere.. :-(
* When closing down MSN (sb) connections with unsent messages, the warningWilmer van der Gaast2006-01-30-3/+6
| | | | | message now mentions the people those messages were meant for.
* Cleaned up some warnings in MSN module that appeared because of the const ↵Wilmer van der Gaast2006-01-04-9/+9
| | | | change.
* MSN consts!Wilmer van der Gaast2006-01-04-12/+12
|