2016-03-26 03:29:44 +01:00
|
|
|
/* authd/notice.c - send notices back to the ircd and to clients
|
|
|
|
* Copyright (c) 2016 Elizabeth Myers <elizabeth@interlinked.me>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "authd.h"
|
|
|
|
#include "notice.h"
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd::defaults;
|
|
|
|
|
|
|
|
|
2016-03-26 03:29:44 +01:00
|
|
|
/* Send a notice to a client */
|
2016-03-28 00:04:14 +02:00
|
|
|
void
|
|
|
|
notice_client(uint32_t cid, const char *fmt, ...)
|
2016-03-26 03:29:44 +01:00
|
|
|
{
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
rb_helper_write(authd_helper, "N %x :%s", cid, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send a warning to the IRC daemon for logging, etc. */
|
2016-03-28 00:04:14 +02:00
|
|
|
void
|
|
|
|
warn_opers(notice_level_t level, const char *fmt, ...)
|
2016-03-26 03:29:44 +01:00
|
|
|
{
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
rb_helper_write(authd_helper, "W %c :%s", level, buf);
|
|
|
|
}
|
2016-03-28 00:04:14 +02:00
|
|
|
|
|
|
|
/* Send a stats result */
|
|
|
|
void
|
|
|
|
stats_result(uint32_t cid, char letter, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
rb_helper_write(authd_helper, "Y %x %c %s", cid, letter, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send a stats error */
|
|
|
|
void
|
|
|
|
stats_error(uint32_t cid, char letter, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char buf[BUFSIZE];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
rb_helper_write(authd_helper, "X %x %c %s", cid, letter, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
stats_done(uint32_t cid, char letter)
|
|
|
|
{
|
|
|
|
rb_helper_write(authd_helper, "Z %x %c", cid, letter);
|
|
|
|
}
|