X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/58067bff67870a2d8a27c3e0222727e0c734c749..4cb3ae7836bbb1dfcc5248875ca3c24fadff024e:/src/supported.c diff --git a/src/supported.c b/src/supported.c index da3a2f2..f34562e 100644 --- a/src/supported.c +++ b/src/supported.c @@ -81,22 +81,22 @@ */ #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" -dlink_list isupportlist; +rb_dlink_list isupportlist; struct isupportitem { const char *name; const char *(*func)(const void *); const void *param; - dlink_node node; + rb_dlink_node node; }; void @@ -104,27 +104,53 @@ 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; - dlinkAddTail(item, &item->node, &isupportlist); + 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) { - dlink_node *ptr, *next_ptr; + rb_dlink_node *ptr, *next_ptr; struct isupportitem *item; - DLINK_FOREACH_SAFE(ptr, next_ptr, isupportlist.head) + RB_DLINK_FOREACH_SAFE(ptr, next_ptr, isupportlist.head) { item = ptr->data; if (!strcmp(item->name, name)) { - dlinkDelete(ptr, &isupportlist); - MyFree(item); + rb_dlinkDelete(ptr, &isupportlist); + rb_free(item); } } } @@ -133,7 +159,7 @@ delete_isupport(const char *name) void show_isupport(struct Client *client_p) { - dlink_node *ptr; + rb_dlink_node *ptr; struct isupportitem *item; const char *value; char buf[512]; @@ -150,7 +176,7 @@ show_isupport(struct Client *client_p) extra_space += strlen(me.name) + 1 + strlen(form_str(RPL_ISUPPORT)); nchars = extra_space, nparams = 0, buf[0] = '\0'; - DLINK_FOREACH(ptr, isupportlist.head) + RB_DLINK_FOREACH(ptr, isupportlist.head) { item = ptr->data; value = (*item->func)(item->param); @@ -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++; @@ -181,7 +207,7 @@ const char * isupport_intptr(const void *ptr) { static char buf[15]; - ircsnprintf(buf, sizeof buf, "%d", *(const int *)ptr); + rb_snprintf(buf, sizeof buf, "%d", *(const int *)ptr); return buf; } @@ -210,12 +236,11 @@ isupport_chanmodes(const void *ptr) { static char result[80]; - ircsnprintf(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" : "", - dlink_list_length(&service_list) ? "r" : "", - ConfigChannel.use_forward ? "QF" : ""); + cflagsbuf); return result; } @@ -224,7 +249,7 @@ isupport_chanlimit(const void *ptr) { static char result[30]; - ircsnprintf(result, sizeof result, "&#:%i", ConfigChannel.max_chans_per_user); + rb_snprintf(result, sizeof result, "&#:%i", ConfigChannel.max_chans_per_user); return result; } @@ -233,7 +258,7 @@ isupport_maxlist(const void *ptr) { static char result[30]; - ircsnprintf(result, sizeof result, "bq%s%s:%i", + rb_snprintf(result, sizeof result, "bq%s%s:%i", ConfigChannel.use_except ? "e" : "", ConfigChannel.use_invex ? "I" : "", ConfigChannel.max_bans); @@ -245,7 +270,7 @@ isupport_targmax(const void *ptr) { static char result[200]; - ircsnprintf(result, sizeof result, "NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:%d,NOTICE:%d,ACCEPT:,MONITOR:", + rb_snprintf(result, sizeof result, "NAMES:1,LIST:1,KICK:1,WHOIS:1,PRIVMSG:%d,NOTICE:%d,ACCEPT:,MONITOR:", ConfigFileEntry.max_targets, ConfigFileEntry.max_targets); return result; @@ -260,7 +285,7 @@ isupport_extban(const void *ptr) p = get_extban_string(); if (EmptyString(p)) return NULL; - ircsnprintf(result, sizeof result, "$,%s", p); + rb_snprintf(result, sizeof result, "$,%s", p); 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, ""); }