diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 15:12:32 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-08 15:12:32 +0100 |
commit | fd45e1d1d63761a0bf18c7ad885d72acd6367746 (patch) | |
tree | c1efe00a081d3c4ec85c5679bd809d2a2d7a1ab7 /irc.h | |
parent | b0364dc3b881e4b5e9afd1ff62d5b3cc792a87ca (diff) |
Always show normal contacts in &bitlbee, not just the first channel in the
list.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -77,6 +77,7 @@ typedef struct irc GSList *file_transfers; GSList *users, *channels; + struct irc_channel *default_channel; GHashTable *nick_user_hash; GHashTable *watches; @@ -129,6 +130,7 @@ extern const struct irc_user_funcs irc_user_self_funcs; typedef enum { IRC_CHANNEL_JOINED = 1, + IRC_CHANNEL_CONTACTS = 256, } irc_channel_flags_t; typedef struct irc_channel |