m_cap: simplify cap_req, remove multiline

Spec doesn't really allow multiline here, so don't use it
This commit is contained in:
Doug Freed 2020-11-06 22:57:40 +00:00
parent cbc31cce4d
commit 5d7273614b

View file

@ -302,16 +302,11 @@ cap_ls(struct Client *source_p, const char *arg)
static void static void
cap_req(struct Client *source_p, const char *arg) cap_req(struct Client *source_p, const char *arg)
{ {
static char buf_prefix[DATALEN + 1]; char ack_buf[DATALEN+1];
static char buf_list[2][DATALEN + 1];
const char *str_cont = " * :";
const char *str_final = " :";
int len_prefix;
int max_list;
struct CapabilityEntry *cap; struct CapabilityEntry *cap;
int i = 0;
int capadd = 0, capdel = 0; int capadd = 0, capdel = 0;
int finished = 0, negate; int finished = 0, negate;
int ret;
hook_data_cap_change hdata; hook_data_cap_change hdata;
if(!IsRegistered(source_p)) if(!IsRegistered(source_p))
@ -320,21 +315,19 @@ cap_req(struct Client *source_p, const char *arg)
if(EmptyString(arg)) if(EmptyString(arg))
return; return;
buf_prefix[0] = '\0'; ret = snprintf(ack_buf, sizeof ack_buf, ":%s CAP %s ACK :%s",
len_prefix = rb_snprintf_try_append(buf_prefix, sizeof(buf_prefix), me.name, EmptyString(source_p->name)? "*" : source_p->name, arg);
":%s CAP %s ACK",
me.name,
EmptyString(source_p->name) ? "*" : source_p->name);
buf_list[0][0] = '\0'; if (ret < 0 || ret > DATALEN)
buf_list[1][0] = '\0'; {
max_list = sizeof(buf_prefix) - len_prefix - strlen(str_cont); sendto_one(source_p, ":%s CAP %s NAK :%s",
me.name, EmptyString(source_p->name) ? "*" : source_p->name, arg);
return;
}
for(cap = clicap_find(arg, &negate, &finished); cap; for(cap = clicap_find(arg, &negate, &finished); cap;
cap = clicap_find(NULL, &negate, &finished)) cap = clicap_find(NULL, &negate, &finished))
{ {
const char *type;
if(negate) if(negate)
{ {
if(HasCapabilityFlag(cap, CLICAP_FLAGS_STICKY)) if(HasCapabilityFlag(cap, CLICAP_FLAGS_STICKY))
@ -343,7 +336,6 @@ cap_req(struct Client *source_p, const char *arg)
break; break;
} }
type = "-";
capdel |= (1 << cap->value); capdel |= (1 << cap->value);
} }
else else
@ -354,36 +346,9 @@ cap_req(struct Client *source_p, const char *arg)
break; break;
} }
type = "";
capadd |= (1 << cap->value); capadd |= (1 << cap->value);
} }
for (int attempts = 0; attempts < 2; attempts++) {
if (rb_snprintf_try_append(buf_list[i], max_list, "%s%s%s",
buf_list[i][0] == '\0' ? "" : " ", /* space between caps */
type,
cap->cap) < 0
&& buf_list[i][0] != '\0') {
if (!(source_p->flags & FLAGS_CLICAP_DATA)) {
/* the client doesn't support multiple lines */
break;
}
/* doesn't fit in the buffer, move to the next one */
if (i < 2) {
i++;
} else {
/* uh-oh */
break;
}
/* reset the buffer and go around the loop one more time */
buf_list[i][0] = '\0';
} else {
break;
}
}
} }
if(!finished) if(!finished)
@ -393,12 +358,7 @@ cap_req(struct Client *source_p, const char *arg)
return; return;
} }
if (i) { sendto_one(source_p, "%s", ack_buf);
sendto_one(source_p, "%s%s%s", buf_prefix, str_cont, buf_list[0]);
sendto_one(source_p, "%s%s%s", buf_prefix, str_final, buf_list[1]);
} else {
sendto_one(source_p, "%s%s%s", buf_prefix, str_final, buf_list[0]);
}
hdata.client = source_p; hdata.client = source_p;
hdata.oldcaps = source_p->localClient->caps; hdata.oldcaps = source_p->localClient->caps;