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-03-26 05:04:00 +01:00
|
|
|
#include "stdinc.h"
|
|
|
|
#include "rb_lib.h"
|
|
|
|
#include "rb_dictionary.h"
|
2016-01-06 10:52:37 +01:00
|
|
|
|
|
|
|
#include "setup.h"
|
2016-03-23 16:06:52 +01:00
|
|
|
#include "ircd_defs.h"
|
2016-01-06 10:52:37 +01:00
|
|
|
|
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-03-09 17:15:42 +01:00
|
|
|
extern authd_cmd_handler authd_cmd_handlers[256];
|
|
|
|
extern authd_stat_handler authd_stat_handlers[256];
|
|
|
|
extern authd_reload_handler authd_reload_handlers[256];
|
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
|