2016-01-06 10:52:37 +01:00
|
|
|
/* authd/dns.h - header for authd DNS functions
|
|
|
|
* Copyright (c) 2016 William Pitcock <nenolod@dereferenced.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _AUTHD_H
|
|
|
|
#define _AUTHD_H
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
#include <ircd/stdinc.h>
|
2016-01-06 10:52:37 +01:00
|
|
|
|
2016-03-29 02:22:02 +02:00
|
|
|
typedef enum exit_reasons
|
|
|
|
{
|
|
|
|
EX_ERROR = 1,
|
|
|
|
EX_DNS_ERROR = 2,
|
|
|
|
EX_PROVIDER_ERROR = 3,
|
|
|
|
} exit_reasons;
|
|
|
|
|
2016-03-26 05:04:00 +01:00
|
|
|
typedef void (*provider_opts_handler_t)(const char *, int, const char **);
|
|
|
|
|
|
|
|
struct auth_opts_handler
|
|
|
|
{
|
|
|
|
const char *option;
|
|
|
|
int min_parc;
|
|
|
|
provider_opts_handler_t handler;
|
|
|
|
};
|
|
|
|
|
2016-01-06 10:52:37 +01:00
|
|
|
extern rb_helper *authd_helper;
|
|
|
|
|
|
|
|
typedef void (*authd_cmd_handler)(int parc, char *parv[]);
|
2016-03-28 00:28:26 +02:00
|
|
|
typedef void (*authd_stat_handler)(uint32_t rid, const char letter);
|
2016-03-09 10:46:04 +01:00
|
|
|
typedef void (*authd_reload_handler)(const char letter);
|
|
|
|
|
2016-07-13 07:17:21 +02:00
|
|
|
extern std::array<authd_cmd_handler, 256> authd_cmd_handlers;
|
|
|
|
extern std::array<authd_stat_handler, 256> authd_stat_handlers;
|
|
|
|
extern std::array<authd_reload_handler, 256> authd_reload_handlers;
|
2016-01-06 10:52:37 +01:00
|
|
|
|
2016-03-26 05:04:00 +01:00
|
|
|
extern rb_dictionary *authd_option_handlers;
|
|
|
|
|
2016-01-06 10:52:37 +01:00
|
|
|
#endif
|