]> jfr.im git - solanum.git/blame - authd/notice.c
authd/provider: some fixes
[solanum.git] / authd / notice.c
CommitLineData
db821ee9
EM
1/* authd/notice.c - send notices back to the ircd and to clients
2 * Copyright (c) 2016 Elizabeth Myers <elizabeth@interlinked.me>
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice is present in all copies.
7 *
8 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
9 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
11 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
12 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
13 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
14 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
15 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
16 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
17 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
18 * POSSIBILITY OF SUCH DAMAGE.
19 */
20
21#include "authd.h"
22#include "notice.h"
23
24/* Send a notice to a client */
25void notice_client(uint32_t cid, const char *fmt, ...)
26{
27 char buf[BUFSIZE];
28 va_list args;
29
30 va_start(args, fmt);
31 vsnprintf(buf, sizeof(buf), fmt, args);
32 va_end(args);
33
34 rb_helper_write(authd_helper, "N %x :%s", cid, buf);
35}
36
37/* Send a warning to the IRC daemon for logging, etc. */
38void warn_opers(notice_level_t level, const char *fmt, ...)
39{
40 char buf[BUFSIZE];
41 va_list args;
42
43 va_start(args, fmt);
44 vsnprintf(buf, sizeof(buf), fmt, args);
45 va_end(args);
46
47 rb_helper_write(authd_helper, "W %c :%s", level, buf);
48}