]> jfr.im git - solanum.git/blob - authd/authd.h
authd/provider: cleanups
[solanum.git] / authd / authd.h
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
24 #include <rb_lib.h>
25 #include <stdio.h>
26
27 #include "setup.h"
28 #include "ircd_defs.h"
29
30 extern rb_helper *authd_helper;
31
32 typedef void (*authd_cmd_handler)(int parc, char *parv[]);
33 typedef void (*authd_stat_handler)(const char *rid, const char letter);
34 typedef void (*authd_reload_handler)(const char letter);
35
36 extern authd_cmd_handler authd_cmd_handlers[256];
37 extern authd_stat_handler authd_stat_handlers[256];
38 extern authd_reload_handler authd_reload_handlers[256];
39
40 #endif