aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/nogaim.h
Commit message (Collapse)AuthorAgeLines
* Added imcb_ask_auth() instead of reimplementing authorization requestsWilmer van der Gaast2009-10-10-1/+12
| | | | | in every protocol module.
* Fixed ic->away leaking memory. This var is only used by OSCAR and shouldWilmer van der Gaast2008-12-14-1/+1
| | | | | | maybe be killed. Also fixed some completely broken indentation in those functions.
* Restored support for password-protected chatrooms (for now only by acceptingWilmer van der Gaast2008-09-28-2/+2
| | | | | a password in the IRC JOIN command).
* Partial fix for #419: Moved normalize() and some other stuff to OSCARWilmer van der Gaast2008-06-22-5/+0
| | | | | | becuase it's the only place where it's used, and using this to strip spaces from all screennames before sending them to BitlBee.
* query.h now defines a callback function type, not using void* for it anymore.Wilmer van der Gaast2008-04-05-1/+2
| | | | | | Got rid of the bogus window handler pointer as the first argument to the callback.
* Added imcb_chat_log() for chatroom system messages, so they can beWilmer van der Gaast2008-01-20-0/+2
| | | | | displayed inside the right channel.
* Fixing some Solaris compiler warnings (u_int->uint, adding some typecastsWilmer van der Gaast2008-01-17-4/+4
| | | | | for pid_t variables).
* Replaced GPL-incompatible SHA1 hashing code (and renamed the files in caseWilmer van der Gaast2007-11-23-1/+0
| | | | | I ever need SHA256 ;-)).
* Added Jabber groupchat topic support.Wilmer van der Gaast2007-11-19-2/+2
|
* Merging /TOPIC code from Miklos Vajna. Untested, because I still have toWilmer van der Gaast2007-11-19-0/+10
| | | | | implement the Jabber hooks.
* Merge from devel.Wilmer van der Gaast2007-10-12-6/+90
|\
| * Added some comments to nogaim.h (Thanks to Miklos Vajna).Wilmer van der Gaast2007-10-10-1/+2
| |
| * Improve comments in nogaim.h so that writing support for new protocols will beMiklos Vajna2007-10-08-6/+88
| | | | | | | | | | easier.
* | Added imcb_clean_handle() to sanitize handles properly (without puttingWilmer van der Gaast2007-07-15-0/+1
| | | | | | | | | | | | | | IRC-specific stuff into the Jabber module). Only using this in the MUC code for now because this only works if the IM module can somehow convert the cleaned up handle back to the original one.
* | Added imcb_buddy_nick_hint so the Jabber conference module can suggest saneWilmer van der Gaast2007-06-04-0/+1
| | | | | | | | | | | | | | | | nicknames for chatroom participants. There'll probably be a lot of underscores now, but this is by far the cleanest way to implement this, I think. At least now whispers will work properly. Also using this function call to set names for ICQ contacts in a slightly saner way.
* | Prepared the Jabber module for anonymous rooms, but the BitlBee coreWilmer van der Gaast2007-04-25-0/+1
| | | | | | | | | | | | doesn't deal with it very well, and I don't really know yet how I'll solve this... :-(
* | Got rid of one HORRIBLE stupidity called chat_by_channel(), which stillWilmer van der Gaast2007-04-22-1/+0
| | | | | | | | | | | | | | used the GLOBAL IM connections list, allowing user A to interfere with user B's groupchats if running in daemon mode. I can't believe this was still there...
* | Read-only support for Jabber conferences (non-anonymous rooms only).Wilmer van der Gaast2007-04-22-4/+2
|/ | | | | Just don't use this, you're really not going to like it. :-)
* join_chat root command works for AIM chats now. (Was trivial to add andWilmer van der Gaast2007-04-21-1/+1
| | | | | useful for testing.)
* Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crapWilmer van der Gaast2007-04-20-2/+2
| | | | | too.
* Added G_GNUC_PRINTF() to imcb_(log|error) to keep an eye on fmt string issues.Wilmer van der Gaast2007-04-20-2/+2
|
* Renamed some more prpl functions.Wilmer van der Gaast2007-04-20-4/+4
|
* Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-10/+9
|
* More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-04-18-3/+4
| | | | | | | | | 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-7/+7
| | | | | buddy/groupchat related functions.
* Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-04-15-13/+11
| | | | | | | 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-48/+38
| | | | | | 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-5/+1
| | | | | it's in acc too. wants_to_die is now an argument to imc_logout().
* More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-04-05-9/+6
| | | | | | | | 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-70/+78
| | | | | | 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-23/+25
|
* 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 protocol-specific settings, made the server setting specific to onlyWilmer van der Gaast2006-07-02-0/+1
| | | | | OSCAR and Jabber.
* Got rid of struct aim_user (now using account_t everywhere). Needs some moreWilmer van der Gaast2006-07-01-20/+4
| | | | | testing though.
* Made set.c API more generic so it's not specific to irc_t structures anymore,Wilmer van der Gaast2006-06-30-1/+1
| | | | | but can be used for account_t structures too, for example.
* Merging Jelmer's storage tree (with LDAP support).Wilmer van der Gaast2006-06-07-2/+4
|\
| * Implemented netsplits for "account off".Wilmer van der Gaast2006-06-03-2/+4
| |
| |
| \
*-. | Merging from main development tree.Wilmer van der Gaast2006-05-26-5/+10
|\ \|
| | * Fix typoJelmer Vernooij2006-05-25-1/+1
| | |
| | * Added G_GNUC_PRINTF(...) to definitions of functions that take formatWilmer van der Gaast2006-05-23-1/+1
| | | | | | | | | | | | | | | strings so GCC can detect them and complain when things don't look right.
| | * Added bim_ functions for block/allow list management to keep gc->permit/denyWilmer van der Gaast2006-05-23-0/+5
| | | | | | | | | | | | | | | up-to-date at run-time.
| | * Some changes for im_api. (bim_* functions)Wilmer van der Gaast2006-05-23-3/+3
| |/
* / Moved everything to the BitlBee event handling API.Wilmer van der Gaast2006-05-10-1/+1
|/
* Removed account_offline(), we have signoff() already.Wilmer van der Gaast2006-04-13-1/+0
|
* Cleaned up two more functions from nogaim.Wilmer van der Gaast2006-04-13-7/+0
|
* Got rid of some old e-mail addresses.Wilmer van der Gaast2006-04-07-1/+1
|
* Unused stuff.Wilmer van der Gaast2006-04-07-10/+0
|
* Added/Fixed calls to show_got_added() in all IM-modules, now to fill in thatWilmer van der Gaast2006-04-03-1/+1
| | | | | call. (It should ask the user if he/she wants to add a buddy to his/her list.)
* Finished the iconv() fix. Instead of doing it every time something goes fromWilmer van der Gaast2006-03-31-15/+0
| | | | | | | or to the IM-modules, it's now just done with everything that goes between BitlBee and the user. Incomparably more efficient/reliable. Plus some more cleanups. It compiles, can't test it for real yet. ;-)
* Removed some unused stuff from nogaim.h, preparing to fix some API issues there.Wilmer van der Gaast2006-03-31-55/+23
|