]> jfr.im git - solanum.git/blame - authd/authd.h
authd: split out notices stuff for backporting to master.
[solanum.git] / authd / authd.h
CommitLineData
8cf45447
AC
1/* authd/dns.h - header for authd DNS functions
2 * Copyright (c) 2016 William Pitcock <nenolod@dereferenced.org>
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#ifndef _AUTHD_H
22#define _AUTHD_H
23
fe037171 24#include <rb_lib.h>
8cf45447
AC
25#include <stdio.h>
26
27#include "setup.h"
cb5a8bf8 28#include "ircd_defs.h"
8cf45447
AC
29
30extern rb_helper *authd_helper;
31
32typedef void (*authd_cmd_handler)(int parc, char *parv[]);
394b8dde 33typedef void (*authd_stat_handler)(const char *rid, const char letter);
6445c1cf
EM
34typedef void (*authd_reload_handler)(const char letter);
35
6f39a80e
MM
36extern authd_cmd_handler authd_cmd_handlers[256];
37extern authd_stat_handler authd_stat_handlers[256];
38extern authd_reload_handler authd_reload_handlers[256];
8cf45447
AC
39
40#endif