/* authd/notice.c - send notices back to the ircd and to clients * Copyright (c) 2016 Elizabeth Myers * * 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" /* Send a notice to a client */ void notice_client(uint32_t cid, 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, "N %x :%s", cid, buf); } /* Send a warning to the IRC daemon for logging, etc. */ void warn_opers(notice_level_t level, 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, "W %c :%s", level, buf); } /* 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); }