aboutsummaryrefslogtreecommitdiffstats
path: root/irc.c
Commit message (Collapse)AuthorAgeLines
...
| * Made the netsplit-like quit messages optional.Wilmer van der Gaast2007-10-10-1/+2
| |
| * Made UTF-8 the new default charset. This is the default on pretty much everyWilmer van der Gaast2007-09-01-1/+1
| | | | | | | | | | recent machin.
* | Fixed irc_chat_by_channel() to not break if using multiple IM accountsWilmer van der Gaast2007-06-14-3/+11
| | | | | | | | | | where some of them are down.
* | Got rid of one HORRIBLE stupidity called chat_by_channel(), which stillWilmer van der Gaast2007-04-22-3/+19
|/ | | | | | | 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...
* Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crapWilmer van der Gaast2007-04-20-1/+1
| | | | | too.
* s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h aWilmer van der Gaast2007-04-15-3/+3
| | | | | | 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-3/+2
| | | | | 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-1/+1
| | | | | | | | 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-21/+21
| | | | | | 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-4/+4
|
* Preventing infinite loop while cleaning up accounts in irc_free(). Closes #245.Wilmer van der Gaast2007-02-18-1/+6
|
* Disabling little optimization in irc.c because it can't be done safely inWilmer van der Gaast2006-10-31-2/+5
| | | | | this part of the code for now.
* Added message on successful creation of accounts and fixed "set password"Wilmer van der Gaast2006-08-25-1/+3
| | | | | command.
* Extra comments in set.h and now properly using set_getbool() instead ofWilmer van der Gaast2006-08-13-2/+2
| | | | | set_getint().
* Added some (more) comments to .h files in lib/ and some minor fixes/cleanups.Wilmer van der Gaast2006-07-19-1/+0
|
* Fixed a broken call to set_get() (CRASH), shut up a compiler warning inWilmer van der Gaast2006-07-15-1/+1
| | | | | events_glib and now using the right evaluator for acc->"auto_reconnect".
* Merging from main.Wilmer van der Gaast2006-07-14-19/+26
|\
| * Better handling of situations where IPv6 is not available at run-time.Wilmer van der Gaast2006-07-11-19/+22
| |
| * Fixed irc_names() (forgot to add @s for user/root in the new version).Wilmer van der Gaast2006-07-09-1/+4
| |
* | Implemented per-account nick lists instead of per-protocol nick lists.Wilmer van der Gaast2006-07-03-37/+6
| | | | | | | | | | | | | | | | | | | | 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()!
* | Fixed check in set_eval_account() and merging from main (better NAMES replies).Wilmer van der Gaast2006-07-01-35/+34
|\|
| * /NAMES replies are more efficient now.Wilmer van der Gaast2006-06-26-35/+34
| |
* | Got rid of struct aim_user (now using account_t everywhere). Needs some moreWilmer van der Gaast2006-07-01-7/+7
| | | | | | | | | | testing though.
* | Made set.c API more generic so it's not specific to irc_t structures anymore,Wilmer van der Gaast2006-06-30-29/+29
| | | | | | | | | | but can be used for account_t structures too, for example.
* | Merging from devel (IRC protocol compliance stuff).Wilmer van der Gaast2006-06-26-6/+25
|\|
| * IRC protocol compliance fixes (closes: #158, #159, #160).Wilmer van der Gaast2006-06-25-6/+25
| |
| * Why did I forget this one? *sigh*Wilmer van der Gaast2006-06-25-1/+1
| |
| * Merging libevent branch: Events can now be handles by both glib and libevent.Wilmer van der Gaast2006-06-21-27/+33
| |\
* | | Added versioning information to the XML-file (convenient for later formatWilmer van der Gaast2006-06-25-3/+4
| | | | | | | | | | | | | | | | | | | | | changes), got rid of confusing "Password successfully changed" message when the user uses the identify-command and protected rc4_decode() against short inputs.
* | | Using salted MD5 checksums for the user's BitlBee password and salted RC4Wilmer van der Gaast2006-06-25-2/+1
| | | | | | | | | | | | | | | | | | encryption for the IM account passwords, plus some calls to srand() to keep the salts secure and unique.
| | |
| \ \
*-. | | xml_save(), decent error handling and merging fixed autosaving.Wilmer van der Gaast2006-06-15-6/+6
|\ \| |
| | * | !x&y == (!x)&y, not !(x&y).Wilmer van der Gaast2006-06-15-2/+2
| |/ /
| * | Converted irc->status to binary flags. (This also fixes auto-save-on-quitWilmer van der Gaast2006-06-15-5/+5
| | | | | | | | | | | | | | | that broke because of USTATUS_SHUTDOWN. :-( )
* | | Merging Jelmer's storage tree (with LDAP support).Wilmer van der Gaast2006-06-07-2/+24
|\| | | |/ |/|
| * Implemented netsplits for "account off".Wilmer van der Gaast2006-06-03-2/+24
| |
| * Require GLib 2Jelmer Vernooij2006-05-26-4/+0
| |
| |
| \
*-. | Merging from main development tree.Wilmer van der Gaast2006-05-26-9/+13
|\ \|
| | * Silenced all compiler warnings that appeared after previous commit.Wilmer van der Gaast2006-05-23-3/+3
| | |
| | * Some changes for im_api. (bim_* functions)Wilmer van der Gaast2006-05-23-7/+11
| |/
* | Merging from main development tree.Wilmer van der Gaast2006-05-19-1/+1
|\|
| * Fixed various memory leaks/other possible problems after code review.Wilmer van der Gaast2006-05-15-1/+1
| |
* | irc_vawrite() now first attempts to write() immediately (because that'sWilmer van der Gaast2006-05-14-2/+10
| | | | | | | | | | | | | | usually not a problem) and only touches the event queue when the write() doesn't write everything. And got rid of a quit element in the irc_t structure that actually wasn't even used.
* | Moved everything to the BitlBee event handling API.Wilmer van der Gaast2006-05-10-18/+18
| |
* | Got rid of all GLib GIOChannel-related calls outside proxy.cWilmer van der Gaast2006-05-07-17/+11
|/
* Removed account_offline(), we have signoff() already.Wilmer van der Gaast2006-04-13-3/+5
|
* Renamed irc_free_userhash().Wilmer van der Gaast2006-04-07-3/+3
|
* Complete fix for #113: a->reconnect does *not* contain a GLib source ID, oops...Wilmer van der Gaast2006-04-01-1/+1
|
* Tested and fixed one issue, and got rid of one more superfluous iconv call.Wilmer van der Gaast2006-03-31-5/+5
|
* Finished the iconv() fix. Instead of doing it every time something goes fromWilmer van der Gaast2006-03-31-2/+18
| | | | | | | 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. ;-)
* irc_vawrite() does charset conversion now. Next step: Do it for incoming IRCWilmer van der Gaast2006-03-31-6/+15
| | | | | traffic, and get rid of most other iconv() calls.