Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
* | Disabling little optimization in irc.c because it can't be done safely in | Wilmer van der Gaast | 2006-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 Gaast | 2006-08-25 | -1/+3 | |
| | | | | | command. | ||||
* | Extra comments in set.h and now properly using set_getbool() instead of | Wilmer van der Gaast | 2006-08-13 | -2/+2 | |
| | | | | | set_getint(). | ||||
* | Added some (more) comments to .h files in lib/ and some minor fixes/cleanups. | Wilmer van der Gaast | 2006-07-19 | -1/+0 | |
| | |||||
* | Fixed a broken call to set_get() (CRASH), shut up a compiler warning in | Wilmer van der Gaast | 2006-07-15 | -1/+1 | |
| | | | | | events_glib and now using the right evaluator for acc->"auto_reconnect". | ||||
* | Merging from main. | Wilmer van der Gaast | 2006-07-14 | -19/+26 | |
|\ | |||||
| * | Better handling of situations where IPv6 is not available at run-time. | Wilmer van der Gaast | 2006-07-11 | -19/+22 | |
| | | |||||
| * | Fixed irc_names() (forgot to add @s for user/root in the new version). | Wilmer van der Gaast | 2006-07-09 | -1/+4 | |
| | | |||||
* | | Implemented per-account nick lists instead of per-protocol nick lists. | Wilmer van der Gaast | 2006-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 Gaast | 2006-07-01 | -35/+34 | |
|\| | |||||
| * | /NAMES replies are more efficient now. | Wilmer van der Gaast | 2006-06-26 | -35/+34 | |
| | | |||||
* | | Got rid of struct aim_user (now using account_t everywhere). Needs some more | Wilmer van der Gaast | 2006-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 Gaast | 2006-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 Gaast | 2006-06-26 | -6/+25 | |
|\| | |||||
| * | IRC protocol compliance fixes (closes: #158, #159, #160). | Wilmer van der Gaast | 2006-06-25 | -6/+25 | |
| | | |||||
| * | Why did I forget this one? *sigh* | Wilmer van der Gaast | 2006-06-25 | -1/+1 | |
| | | |||||
| * | Merging libevent branch: Events can now be handles by both glib and libevent. | Wilmer van der Gaast | 2006-06-21 | -27/+33 | |
| |\ | |||||
* | | | Added versioning information to the XML-file (convenient for later format | Wilmer van der Gaast | 2006-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 RC4 | Wilmer van der Gaast | 2006-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 Gaast | 2006-06-15 | -6/+6 | |
|\ \| | | |||||
| | * | | !x&y == (!x)&y, not !(x&y). | Wilmer van der Gaast | 2006-06-15 | -2/+2 | |
| |/ / | |||||
| * | | Converted irc->status to binary flags. (This also fixes auto-save-on-quit | Wilmer van der Gaast | 2006-06-15 | -5/+5 | |
| | | | | | | | | | | | | | | | that broke because of USTATUS_SHUTDOWN. :-( ) | ||||
* | | | Merging Jelmer's storage tree (with LDAP support). | Wilmer van der Gaast | 2006-06-07 | -2/+24 | |
|\| | | |/ |/| | |||||
| * | Implemented netsplits for "account off". | Wilmer van der Gaast | 2006-06-03 | -2/+24 | |
| | | |||||
| * | Require GLib 2 | Jelmer Vernooij | 2006-05-26 | -4/+0 | |
| | | |||||
| | | |||||
| \ | |||||
*-. | | Merging from main development tree. | Wilmer van der Gaast | 2006-05-26 | -9/+13 | |
|\ \| | |||||
| | * | Silenced all compiler warnings that appeared after previous commit. | Wilmer van der Gaast | 2006-05-23 | -3/+3 | |
| | | | |||||
| | * | Some changes for im_api. (bim_* functions) | Wilmer van der Gaast | 2006-05-23 | -7/+11 | |
| |/ | |||||
* | | Merging from main development tree. | Wilmer van der Gaast | 2006-05-19 | -1/+1 | |
|\| | |||||
| * | Fixed various memory leaks/other possible problems after code review. | Wilmer van der Gaast | 2006-05-15 | -1/+1 | |
| | | |||||
* | | irc_vawrite() now first attempts to write() immediately (because that's | Wilmer van der Gaast | 2006-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 Gaast | 2006-05-10 | -18/+18 | |
| | | |||||
* | | Got rid of all GLib GIOChannel-related calls outside proxy.c | Wilmer van der Gaast | 2006-05-07 | -17/+11 | |
|/ | |||||
* | Removed account_offline(), we have signoff() already. | Wilmer van der Gaast | 2006-04-13 | -3/+5 | |
| | |||||
* | Renamed irc_free_userhash(). | Wilmer van der Gaast | 2006-04-07 | -3/+3 | |
| | |||||
* | Complete fix for #113: a->reconnect does *not* contain a GLib source ID, oops... | Wilmer van der Gaast | 2006-04-01 | -1/+1 | |
| | |||||
* | Tested and fixed one issue, and got rid of one more superfluous iconv call. | Wilmer van der Gaast | 2006-03-31 | -5/+5 | |
| | |||||
* | Finished the iconv() fix. Instead of doing it every time something goes from | Wilmer van der Gaast | 2006-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 IRC | Wilmer van der Gaast | 2006-03-31 | -6/+15 | |
| | | | | | traffic, and get rid of most other iconv() calls. | ||||
* | Fixed cleanup of connections in (non-forking) daemon mode. (Better handling | Wilmer van der Gaast | 2006-03-15 | -2/+5 | |
| | | | | | of auto_reconnect) | ||||
* | Renamed commands.c, got rid of return values in all command functions. | Wilmer van der Gaast | 2006-01-20 | -20/+23 | |
| | |||||
* | Merging IPC branch, it's too different from the main code to keep it | Wilmer van der Gaast | 2006-01-20 | -632/+124 | |
|\ | | | | | | | | | separated (and it's pretty stable now). Have fun. :-) | ||||
| * | Die, bug, die! (And apparently bzr suddenly felt like merging some old ↵ | Wilmer van der Gaast | 2006-01-19 | -1/+1 | |
| |\ | | | | | | | | | | commits...) | ||||
| * | | Fixes for single-process daemon mode, changed value of USTATUS_SHUTDOWN. If | Wilmer van der Gaast | 2006-01-19 | -1/+3 | |
| | | | | | | | | | | | | | | | | | | this still causes problems, shutting down should be an extra flag instead of a status code. | ||||
| * | | A bit too much for one commit, but well: Client processes didn't clean up | Wilmer van der Gaast | 2006-01-19 | -1/+4 | |
| | | | | | | | | | | | | | | | | | | | | | some master structs (bitlbee_child list) yet, and added the IPC CLIENT command to inform the master process about host- and nickname. Can be useful later. | ||||
| * | | Merged (and adapted) changes from main tree. | Wilmer van der Gaast | 2006-01-18 | -0/+14 | |
| |\ \ | |||||
| * | | | Better DIE implementation, added SO_REUSEADDR to listening socket. | Wilmer van der Gaast | 2006-01-15 | -0/+31 | |
| | | | | |||||
| * | | | Imported irc_command branch and used this addition for parsing IPC commands. ↵ | Wilmer van der Gaast | 2006-01-15 | -639/+91 | |
| |\ \ \ | | | | | | | | | | | | | | | | (Implemented WALLOP and a very evil DIE.) | ||||
| | * | | | Separated the IRC line splitting/parsing code (to use it for IPC too), and ↵ | Wilmer van der Gaast | 2006-01-14 | -67/+82 | |
| | | | | | | | | | | | | | | | | | | | | improved the splitting to deal with empty arguments. | ||||
| | * | | | Fixed the PASS-command, added error messages for invalid commands to irc_exec(). | Wilmer van der Gaast | 2006-01-14 | -0/+22 | |
| | | | | |