aboutsummaryrefslogtreecommitdiffstats
path: root/irc.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-06-30 00:44:17 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-06-30 00:44:17 +0100
commit7a6ba50d4824c4e33ebf1154e97038c9331f4f58 (patch)
tree93926be0405cd696661d23eef569b5ea0df4287e /irc.h
parent58646d9244557320ec811ee0b67519027170eede (diff)
Also allow selecting contacts for a channel by protocol instead of account.
If someone has two MSN accts and wants contacts from both in one channel, this is now possible.
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index 9bfb23b1..4663c5b9 100644
--- a/irc.h
+++ b/irc.h
@@ -192,6 +192,7 @@ typedef enum
IRC_CC_TYPE_REST,
IRC_CC_TYPE_GROUP,
IRC_CC_TYPE_ACCOUNT,
+ IRC_CC_TYPE_PROTOCOL,
} irc_control_channel_type_t;
struct irc_control_channel
@@ -199,6 +200,7 @@ struct irc_control_channel
irc_control_channel_type_t type;
struct bee_group *group;
struct account *account;
+ struct prpl *protocol;
};
extern const struct bee_ui_funcs irc_ui_funcs;