OpenDNSSEC-enforcer 2.1.13
enforcercommands.c
Go to the documentation of this file.
1#include "config.h"
2
3#include "file.h"
4#include "str.h"
5#include "locks.h"
6#include "log.h"
7#include "status.h"
8#include "util.h"
9#include "daemon/engine.h"
10#include "cmdhandler.h"
11#include "enforcercommands.h"
12#include "db/db_connection.h"
13
14/* commands to handle */
18#include "daemon/queue_cmd.h"
20#include "daemon/ctrl_cmd.h"
48
49static struct cmd_func_block* enforcecommands[] = {
50 /* Thoughts has gone into the ordering of this list, it affects
51 * the output of the help command */
61
66
69
79
82
84
87
88
94
95 NULL
96};
97
98struct cmd_func_block** enforcercommands = enforcecommands;
99
101getglobalcontext(cmdhandler_ctx_type* context)
102{
103 return (engine_type*) context->globalcontext;
104}
105
107getconnectioncontext(cmdhandler_ctx_type* context)
108{
109 return (db_connection_t*) context->localcontext;
110}
struct cmd_func_block backup_funcblock
struct cmd_func_block ctrl_funcblock
Definition ctrl_cmd.c:114
struct cmd_func_block enforce_funcblock
db_connection_t * getconnectioncontext(cmdhandler_ctx_type *context)
struct cmd_func_block ** enforcercommands
engine_type * getglobalcontext(cmdhandler_ctx_type *context)
struct cmd_func_block key_generate_funcblock
struct cmd_func_block key_purge_funcblock
struct cmd_func_block key_ds_gone_funcblock
struct cmd_func_block key_ds_retract_funcblock
struct cmd_func_block key_ds_seen_funcblock
struct cmd_func_block key_ds_submit_funcblock
struct cmd_func_block key_export_funcblock
struct cmd_func_block key_import_funcblock
struct cmd_func_block key_list_funcblock
struct cmd_func_block key_rollover_funcblock
struct cmd_func_block policy_export_funcblock
struct cmd_func_block policy_import_funcblock
struct cmd_func_block policy_list_funcblock
struct cmd_func_block policy_purge_funcblock
struct cmd_func_block resalt_funcblock
struct cmd_func_block queue_funcblock
Definition queue_cmd.c:123
struct cmd_func_block flush_funcblock
Definition queue_cmd.c:158
struct cmd_func_block repositorylist_funcblock
struct cmd_func_block rollover_list_funcblock
struct cmd_func_block signconf_funcblock
struct cmd_func_block time_leap_funcblock
struct cmd_func_block update_all_funcblock
struct cmd_func_block update_conf_funcblock
struct cmd_func_block update_repositorylist_funcblock
struct cmd_func_block verbosity_funcblock
struct cmd_func_block zone_add_funcblock
struct cmd_func_block zone_del_funcblock
struct cmd_func_block zone_list_funcblock
struct cmd_func_block zone_set_policy_funcblock
struct cmd_func_block zonelist_export_funcblock
struct cmd_func_block zonelist_import_funcblock