diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-07 16:39:53 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-06-07 16:39:53 +0100 |
commit | c5aefa4463135b3f8720785804fe183817829b00 (patch) | |
tree | 8b09b772da29b8832643645e909acce5fe17963a /irc.h | |
parent | 0e8b3e855dfa370fe559729224b3bff1d4cf5b87 (diff) |
Restore "ops" command completely, and set user op status *just* before
s/he joins.
Diffstat (limited to 'irc.h')
-rw-r--r-- | irc.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -228,6 +228,8 @@ int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_ void irc_channel_user_set_mode( irc_channel_t *ic, irc_user_t *iu, irc_channel_user_flags_t flags ); void irc_channel_printf( irc_channel_t *ic, char *format, ... ); gboolean irc_channel_name_ok( const char *name ); +void irc_channel_update_ops( irc_channel_t *ic, char *value ); +char *set_eval_irc_channel_ops( struct set *set, char *value ); /* irc_commands.c */ void irc_exec( irc_t *irc, char **cmd ); |