Skip to content
Snippets Groups Projects
Commit 52179fa9 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

modules: add zone name parameter to load callback

parent a3c094aa
No related branches found
No related tags found
1 merge request!398Online DNSSEC Signing
......@@ -363,7 +363,7 @@ void conf_activate_modules(
}
// Load the module.
ret = mod->load(*query_plan, mod);
ret = mod->load(*query_plan, mod, zone_name);
if (ret != KNOT_EOK) {
if (zone_name != NULL) {
log_zone_error(zone_name,
......
......@@ -103,7 +103,8 @@ static int dnsproxy_fwd(int state, knot_pkt_t *pkt, struct query_data *qdata, vo
return KNOT_STATE_DONE;
}
int dnsproxy_load(struct query_plan *plan, struct query_module *self)
int dnsproxy_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone)
{
if (plan == NULL || self == NULL) {
return KNOT_EINVAL;
......
......@@ -41,7 +41,8 @@ extern const yp_item_t scheme_mod_dnsproxy[];
int check_mod_dnsproxy(conf_check_t *args);
/*! \brief Module interface. */
int dnsproxy_load(struct query_plan *plan, struct query_module *self);
int dnsproxy_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone);
int dnsproxy_unload(struct query_module *self);
/*! @} */
......@@ -188,7 +188,8 @@ static struct fstrm_writer* dnstap_writer(const char *path)
return dnstap_file_writer(path);
}
int dnstap_load(struct query_plan *plan, struct query_module *self)
int dnstap_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone)
{
if (plan == NULL || self == NULL) {
return KNOT_EINVAL;
......
......@@ -32,7 +32,8 @@ extern const yp_item_t scheme_mod_dnstap[];
int check_mod_dnstap(conf_check_t *args);
/*! \brief Module interface. */
int dnstap_load(struct query_plan *plan, struct query_module *self);
int dnstap_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone);
int dnstap_unload(struct query_module *self);
/*! @} */
......@@ -613,7 +613,8 @@ static int rosedb_query(int state, knot_pkt_t *pkt, struct query_data *qdata, vo
return KNOT_STATE_DONE;
}
int rosedb_load(struct query_plan *plan, struct query_module *self)
int rosedb_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone)
{
if (plan == NULL || self == NULL) {
return KNOT_EINVAL;
......
......@@ -40,7 +40,8 @@ extern const yp_item_t scheme_mod_rosedb[];
int check_mod_rosedb(conf_check_t *args);
/*! \brief Module interface. */
int rosedb_load(struct query_plan *plan, struct query_module *self);
int rosedb_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone);
int rosedb_unload(struct query_module *self);
/*! @} */
......@@ -400,7 +400,8 @@ static int solve_synth_record(int state, knot_pkt_t *pkt, struct query_data *qda
return template_match(state, (synth_template_t *)ctx, pkt, qdata);
}
int synth_record_load(struct query_plan *plan, struct query_module *self)
int synth_record_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone)
{
if (plan == NULL || self == NULL) {
return KNOT_EINVAL;
......
......@@ -41,7 +41,8 @@ extern const yp_item_t scheme_mod_synth_record[];
int check_mod_synth_record(conf_check_t *args);
/*! \brief Module interface. */
int synth_record_load(struct query_plan *plan, struct query_module *self);
int synth_record_load(struct query_plan *plan, struct query_module *self,
const knot_dname_t *zone);
int synth_record_unload(struct query_module *self);
/*! @} */
......@@ -74,7 +74,7 @@ struct query_module;
struct query_plan;
/* Module callback required API. */
typedef int (*qmodule_load_t)(struct query_plan *plan, struct query_module *self);
typedef int (*qmodule_load_t)(struct query_plan *plan, struct query_module *self, const knot_dname_t *zone);
typedef int (*qmodule_unload_t)(struct query_module *self);
typedef int (*qmodule_process_t)(int state, knot_pkt_t *pkt, struct query_data *qdata, void *ctx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment