names: refactor to use multiline

This commit is contained in:
Doug Freed 2020-11-06 23:44:57 +00:00
parent 56c8530469
commit e51d9a67be
2 changed files with 26 additions and 78 deletions

View file

@ -487,11 +487,6 @@ channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eo
struct membership *msptr; struct membership *msptr;
struct Client *target_p; struct Client *target_p;
rb_dlink_node *ptr; rb_dlink_node *ptr;
char lbuf[BUFSIZE];
char *t;
int mlen;
int tlen;
int cur_len;
int is_member; int is_member;
int stack = IsCapable(client_p, CLICAP_MULTI_PREFIX); int stack = IsCapable(client_p, CLICAP_MULTI_PREFIX);
@ -499,11 +494,11 @@ channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eo
{ {
is_member = IsMember(client_p, chptr); is_member = IsMember(client_p, chptr);
cur_len = mlen = sprintf(lbuf, form_str(RPL_NAMREPLY), send_multiline_init(client_p, " ", form_str(RPL_NAMREPLY),
me.name, client_p->name, me.name,
channel_pub_or_secret(chptr), chptr->chname); client_p->name,
channel_pub_or_secret(chptr),
t = lbuf + cur_len; chptr->chname);
RB_DLINK_FOREACH(ptr, chptr->members.head) RB_DLINK_FOREACH(ptr, chptr->members.head)
{ {
@ -515,49 +510,21 @@ channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eo
if (IsCapable(client_p, CLICAP_USERHOST_IN_NAMES)) if (IsCapable(client_p, CLICAP_USERHOST_IN_NAMES))
{ {
/* space, possible "@+" prefix */ send_multiline_item(client_p, "%s%s!%s@%s",
if (cur_len + strlen(target_p->name) + strlen(target_p->username) + strlen(target_p->host) + 5 >= BUFSIZE - 5) find_channel_status(msptr, stack),
{ target_p->name,
*(t - 1) = '\0'; target_p->username,
sendto_one(client_p, "%s", lbuf); target_p->host);
cur_len = mlen;
t = lbuf + mlen;
}
tlen = sprintf(t, "%s%s!%s@%s ", find_channel_status(msptr, stack),
target_p->name, target_p->username, target_p->host);
} }
else else
{ {
/* space, possible "@+" prefix */ send_multiline_item(client_p, "%s%s",
if(cur_len + strlen(target_p->name) + 3 >= BUFSIZE - 3) find_channel_status(msptr, stack),
{ target_p->name);
*(t - 1) = '\0';
sendto_one(client_p, "%s", lbuf);
cur_len = mlen;
t = lbuf + mlen;
}
tlen = sprintf(t, "%s%s ", find_channel_status(msptr, stack),
target_p->name);
} }
cur_len += tlen;
t += tlen;
} }
/* The old behaviour here was to always output our buffer, send_multiline_fini(client_p, NULL);
* even if there are no clients we can show. This happens
* when a client does "NAMES" with no parameters, and all
* the clients on a -sp channel are +i. I dont see a good
* reason for keeping that behaviour, as it just wastes
* bandwidth. --anfl
*/
if(cur_len != mlen)
{
*(t - 1) = '\0';
sendto_one(client_p, "%s", lbuf);
}
} }
if(show_eon) if(show_eon)

View file

@ -119,16 +119,11 @@ m_names(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
static void static void
names_global(struct Client *source_p) names_global(struct Client *source_p)
{ {
int mlen;
int tlen;
int cur_len;
bool dont_show = false; bool dont_show = false;
rb_dlink_node *lp, *ptr; rb_dlink_node *lp, *ptr;
struct Client *target_p; struct Client *target_p;
struct Channel *chptr = NULL; struct Channel *chptr = NULL;
struct membership *msptr; struct membership *msptr;
char buf[BUFSIZE];
char *t;
/* first do all visible channels */ /* first do all visible channels */
RB_DLINK_FOREACH(ptr, global_channel_list.head) RB_DLINK_FOREACH(ptr, global_channel_list.head)
@ -136,9 +131,12 @@ names_global(struct Client *source_p)
chptr = ptr->data; chptr = ptr->data;
channel_member_names(chptr, source_p, 0); channel_member_names(chptr, source_p, 0);
} }
cur_len = mlen = sprintf(buf, form_str(RPL_NAMREPLY),
me.name, source_p->name, "*", "*"); send_multiline_init(source_p, " ", form_str(RPL_NAMREPLY),
t = buf + mlen; me.name,
source_p->name,
"*",
"*");
/* Second, do all clients in one big sweep */ /* Second, do all clients in one big sweep */
RB_DLINK_FOREACH(ptr, global_client_list.head) RB_DLINK_FOREACH(ptr, global_client_list.head)
@ -174,33 +172,16 @@ names_global(struct Client *source_p)
if (IsCapable(source_p, CLICAP_USERHOST_IN_NAMES)) if (IsCapable(source_p, CLICAP_USERHOST_IN_NAMES))
{ {
if (cur_len + strlen(target_p->name) + strlen(target_p->username) + strlen(target_p->host) + strlen(" !@") >= BUFSIZE - strlen("\r\n")) send_multiline_item(source_p, "%s!%s@%s",
{ target_p->name,
*(t - 1) = '\0'; target_p->username,
sendto_one(source_p, "%s", buf); target_p->host);
cur_len = mlen;
t = buf + mlen;
}
tlen = sprintf(t, "%s!%s@%s ", target_p->name, target_p->username, target_p->host);
} }
else else
{ {
if(cur_len + strlen(target_p->name) + strlen(" ") >= BUFSIZE - strlen("\r\n")) send_multiline_item(source_p, "%s", target_p->name);
{
*(t - 1) = '\0';
sendto_one(source_p, "%s", buf);
cur_len = mlen;
t = buf + mlen;
}
tlen = sprintf(t, "%s ", target_p->name);
} }
cur_len += tlen;
t += tlen;
} }
if(cur_len > mlen) send_multiline_fini(source_p, NULL);
sendto_one(source_p, "%s", buf);
} }