diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 22:16:41 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-03 22:16:41 +0100 |
commit | 0bd948edfea280cf9f05e21cd5bef4b7fdf3335c (patch) | |
tree | 1b3f4bbc77f07f3a5f204b688694704d59f3d493 /irc.h | |
parent | 917a83ee526b8e5baaf451888cd0a3149894697b (diff) |
Show a user going offline as a QUIT, not as one or more PARTs, like in the
old-style BitlBee. This so that the IRC client will show the notification
in query windows as well. Make it a setting though, for bug #539.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -272,6 +272,7 @@ irc_user_t *irc_user_by_name( irc_t *irc, const char *nick ); int irc_user_set_nick( irc_user_t *iu, const char *new ); gint irc_user_cmp( gconstpointer a_, gconstpointer b_ ); const char *irc_user_get_away( irc_user_t *iu ); +void irc_user_quit( irc_user_t *iu, const char *msg ); /* irc_util.c */ char *set_eval_timezone( struct set *set, char *value ); |