1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 09:46:37 +02:00
Files
unrealircd/src/modules/ison.c
T
Bram Matthys 0d2d4d5bca Rename match() and _match() to match_simple() -AND- invert the return value
of match_simple() and match_esc(). So, developers, be aware, this is how
you should use the function in a correct way:
if (match_simple("*fun*", str))
    printf("It was fun\n");

Rationale:
I've always been annoyed by the inversed logic, even though it was similar
to strcmp. So I've reverted it.
I could have chosen to maintain match() rather than this match_simple()
name, but this way I force (3rd party module) devs to update their function,
while otherwise everything would mysteriously fail due to the inverted logic.
2019-08-17 09:20:49 +02:00

106 lines
2.3 KiB
C

/*
* IRC - Internet Relay Chat, src/modules/m_ison.c
* (C) 2004 The UnrealIRCd Team
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
CMD_FUNC(m_ison);
#define MSG_ISON "ISON"
ModuleHeader MOD_HEADER(ison)
= {
"ison",
"5.0",
"command /ison",
"3.2-b8-1",
NULL
};
MOD_INIT(ison)
{
CommandAdd(modinfo->handle, MSG_ISON, m_ison, 1, M_USER);
MARK_AS_OFFICIAL_MODULE(modinfo);
return MOD_SUCCESS;
}
MOD_LOAD(ison)
{
return MOD_SUCCESS;
}
MOD_UNLOAD(ison)
{
return MOD_SUCCESS;
}
/*
* m_ison added by Darren Reed 13/8/91 to act as an efficent user indicator
* with respect to cpu/bandwidth used. Implemented for NOTIFY feature in
* clients. Designed to reduce number of whois requests. Can process
* nicknames in batches as long as the maximum buffer length.
*
* format:
* ISON :nicklist
*/
static char buf[BUFSIZE];
CMD_FUNC(m_ison)
{
char namebuf[USERLEN + HOSTLEN + 4];
aClient *acptr;
char *s, *user;
char *p = NULL;
if (!MyClient(sptr))
return 0;
if (parc < 2)
{
sendnumeric(sptr, ERR_NEEDMOREPARAMS, "ISON");
return 0;
}
ircsnprintf(buf, sizeof(buf), rpl_str(RPL_ISON), me.name, sptr->name);
for (s = strtoken(&p, parv[1], " "); s; s = strtoken(&p, NULL, " "))
{
if ((user = index(s, '!')))
*user++ = '\0';
if ((acptr = find_person(s, NULL)))
{
if (user)
{
ircsnprintf(namebuf, sizeof(namebuf), "%s@%s", acptr->user->username, GetHost(acptr));
if (!match_simple(user, namebuf)) continue;
*--user = '!';
}
strlcat(buf, s, sizeof(buf));
strlcat(buf, " ", sizeof(buf));
}
}
sendto_one(sptr, NULL, "%s", buf);
return 0;
}