X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/8e69bb4e903f428b14e2950cce9be39dc8ddd12c..4cb3ae7836bbb1dfcc5248875ca3c24fadff024e:/src/supported.c diff --git a/src/supported.c b/src/supported.c index 8066c7f..f34562e 100644 --- a/src/supported.c +++ b/src/supported.c @@ -81,13 +81,13 @@ */ #include "stdinc.h" -#include "tools.h" #include "client.h" #include "common.h" #include "numeric.h" #include "ircd.h" #include "s_conf.h" #include "supported.h" +#include "chmode.h" rb_dlink_list isupportlist; @@ -104,13 +104,39 @@ add_isupport(const char *name, const char *(*func)(const void *), const void *pa { struct isupportitem *item; - item = MyMalloc(sizeof(struct isupportitem)); + item = rb_malloc(sizeof(struct isupportitem)); item->name = name; item->func = func; item->param = param; rb_dlinkAddTail(item, &item->node, &isupportlist); } +const void * +change_isupport(const char *name, const char *(*func)(const void *), const void *param) +{ + rb_dlink_node *ptr; + struct isupportitem *item; + const void *oldvalue; + + RB_DLINK_FOREACH(ptr, isupportlist.head) + { + item = ptr->data; + + if (!strcmp(item->name, name)) + { + oldvalue = item->param; + + // item->name = name; + item->func = func; + item->param = param; + + break; + } + } + + return oldvalue; +} + void delete_isupport(const char *name) { @@ -124,7 +150,7 @@ delete_isupport(const char *name) if (!strcmp(item->name, name)) { rb_dlinkDelete(ptr, &isupportlist); - MyFree(item); + rb_free(item); } } } @@ -163,12 +189,12 @@ show_isupport(struct Client *client_p) nchars = extra_space, nparams = 0, buf[0] = '\0'; } if (nparams > 0) - strlcat(buf, " ", sizeof buf), nchars++; - strlcat(buf, item->name, sizeof buf); + rb_strlcat(buf, " ", sizeof buf), nchars++; + rb_strlcat(buf, item->name, sizeof buf); if (!EmptyString(value)) { - strlcat(buf, "=", sizeof buf); - strlcat(buf, value, sizeof buf); + rb_strlcat(buf, "=", sizeof buf); + rb_strlcat(buf, value, sizeof buf); } nchars += l; nparams++; @@ -210,12 +236,11 @@ isupport_chanmodes(const void *ptr) { static char result[80]; - rb_snprintf(result, sizeof result, "%s%sbq,k,%slj,imnpst%scgzLP%s", + rb_snprintf(result, sizeof result, "%s%sbq,k,%slj,%s", ConfigChannel.use_except ? "e" : "", ConfigChannel.use_invex ? "I" : "", ConfigChannel.use_forward ? "f" : "", - rb_dlink_list_length(&service_list) ? "r" : "", - ConfigChannel.use_forward ? "QF" : ""); + cflagsbuf); return result; } @@ -299,4 +324,5 @@ 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, ""); }