0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-07 09:15:19 +02:00
construct/extensions/m_echotags.cc

37 lines
1.1 KiB
C++
Raw Normal View History

#include <ircd/stdinc.h>
#include <ircd/modules.h>
#include <ircd/client.h>
#include <ircd/ircd.h>
#include <ircd/send.h>
static void m_echotags(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
struct Message echotags_msgtab = {
"ECHOTAGS", 0, 0, 0, 0,
{ mg_ignore, {m_echotags, 0}, mg_ignore, mg_ignore, mg_ignore, {m_echotags, 0} }
};
mapi_clist_av1 echotags_clist[] = { &echotags_msgtab, NULL };
static const char echotags_desc[] = "A test module for tags";
DECLARE_MODULE_AV2(echotags, NULL, NULL, echotags_clist, NULL, NULL, NULL, NULL, echotags_desc);
static void
m_echotags(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
{
sendto_one_notice(source_p, ":*** You sent %zu tags.", msgbuf_p->n_tags);
2016-03-23 03:53:56 +01:00
for (size_t i = 0; i < msgbuf_p->n_tags; i++)
{
struct MsgTag *tag = &msgbuf_p->tags[i];
if (tag->value)
2016-03-23 03:53:56 +01:00
sendto_one_notice(source_p, ":*** %zu: %s => %s", i, tag->key, tag->value);
else
2016-03-23 03:53:56 +01:00
sendto_one_notice(source_p, ":*** %zu: %s", i, tag->key);
}
}