X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/508c7c41fecfec319aa099de0fb9660b04a6e140..fb87421d0e13c6e62a7c7a62a597e3b53ef772ed:/src/supported.c diff --git a/src/supported.c b/src/supported.c index 6c6b33c..14cee91 100644 --- a/src/supported.c +++ b/src/supported.c @@ -116,7 +116,7 @@ change_isupport(const char *name, const char *(*func)(const void *), const void { rb_dlink_node *ptr; struct isupportitem *item; - void *oldvalue; + const void *oldvalue; RB_DLINK_FOREACH(ptr, isupportlist.head) { @@ -126,7 +126,7 @@ change_isupport(const char *name, const char *(*func)(const void *), const void { oldvalue = item->param; - item->name = name; + // item->name = name; item->func = func; item->param = param; @@ -244,12 +244,33 @@ isupport_chanmodes(const void *ptr) return result; } +static const char * +isupport_chantypes(const void *ptr) +{ + return ConfigChannel.use_local_channels ? "&#" : "#"; +} + static const char * isupport_chanlimit(const void *ptr) { static char result[30]; - rb_snprintf(result, sizeof result, "&#:%i", ConfigChannel.max_chans_per_user); + rb_snprintf(result, sizeof result, "%s:%i", + ConfigChannel.use_local_channels ? "&#" : "#", + ConfigChannel.max_chans_per_user); + return result; +} + +static const char* +isupport_prefix(const void *ptr) +{ + static char result[11]; + + rb_snprintf(result, sizeof result, "(%so%sv)%s@%s+", + ConfigChannel.use_owner ? "a" : "", + ConfigChannel.use_halfop ? "h" : "", + ConfigChannel.use_owner ? "!" : "", + ConfigChannel.use_halfop ? "%" : ""); return result; } @@ -297,12 +318,12 @@ init_isupport(void) static int channellen = LOC_CHANNELLEN; static int topiclen = TOPICLEN; - add_isupport("CHANTYPES", isupport_string, "&#"); + add_isupport("CHANTYPES", isupport_chantypes, NULL); add_isupport("EXCEPTS", isupport_boolean, &ConfigChannel.use_except); add_isupport("INVEX", isupport_boolean, &ConfigChannel.use_invex); add_isupport("CHANMODES", isupport_chanmodes, NULL); add_isupport("CHANLIMIT", isupport_chanlimit, NULL); - add_isupport("PREFIX", isupport_string, "(ov)@+"); + add_isupport("PREFIX", isupport_prefix, NULL); add_isupport("MAXLIST", isupport_maxlist, NULL); add_isupport("MODES", isupport_intptr, &maxmodes); add_isupport("NETWORK", isupport_stringptr, &ServerInfo.network_name); @@ -324,4 +345,6 @@ init_isupport(void) add_isupport("FNC", isupport_string, ""); add_isupport("TARGMAX", isupport_targmax, NULL); add_isupport("EXTBAN", isupport_extban, NULL); + add_isupport("WHOX", isupport_string, ""); + add_isupport("CLIENTVER", isupport_string, "3.0"); }