X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/13a467bb98966810d26b6a2dd28b01820d609c27..ce3ec6fbd33c755592e5877bef45fb44935ef4d9:/src/channel.c diff --git a/src/channel.c b/src/channel.c index b5994d7..0fd0f03 100644 --- a/src/channel.c +++ b/src/channel.c @@ -194,6 +194,38 @@ find_channel_status(struct membership *msptr, int combine) return buffer; } +/* is_any_op() + * + * input - membership to check for ops + * output - 1 if the user is op, halfop, or owner, 0 elsewise + * side effects - + */ +int +is_any_op(struct membership *msptr) +{ + /* Checks for +ah will go here when +ah are implemented */ + if(is_chanop(msptr)) + return 1; + else + return 0; +} + +/* is_chanop_voiced() + * + * input - memebership to check for status + * output - 1 if the user is op, halfop, owner, or voice, 0 elsewise + * side effects - + */ +int +is_chanop_voiced(struct membership *msptr) +{ + /* Checks for +ah will go here when +ah are implemented */ + if(is_chanop(msptr) || is_voiced(msptr)) + return 1; + else + return 0; +} + /* add_user_to_channel() * * input - channel to add client to, client to add, channel flags @@ -928,7 +960,7 @@ find_nonickchange_channel(struct Client *client_p) { msptr = ptr->data; chptr = msptr->chptr; - if (is_chanop_voiced(msptr)) + if (is_any_op(msptr)) continue; if (chptr->mode.mode & MODE_NONICK) return chptr; @@ -1110,6 +1142,26 @@ set_channel_topic(struct Channel *chptr, const char *topic, const char *topic_in } } +/* has_common_channel() + * + * input - pointer to client + * - pointer to another client + * output - 1 if the two have a channel in common, 0 elsewise + * side effects - none + */ +int +has_common_channel(struct Client *client1, struct Client *client2) +{ + rb_dlink_node *ptr; + + RB_DLINK_FOREACH(ptr, client1->user->channel.head) + { + if(IsMember(client2, ((struct membership *)ptr->data)->chptr)) + return 1; + } + return 0; +} + /* channel_modes() * * inputs - pointer to channel