Skip to content
Snippets Groups Projects
Commit 450c3d7f authored by Marek Vavruša's avatar Marek Vavruša
Browse files

process_answer: updated doc

parent 04273157
No related branches found
No related tags found
No related merge requests found
/*!
* \file process_answer.h
*
* \author Marek Vavrusa <marek.vavrusa@nic.cz>
*
* \brief Answer processor.
*
* \addtogroup answer_processing
* @{
*/
/* Copyright (C) 2014 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
......@@ -31,14 +41,19 @@ const knot_process_module_t *process_answer_get_module(void);
what " of '%s' from '%s': ", msg); \
} while(0)
/* Module load parameters. */
/*!
* \brief Answer processing parameters.
*/
struct process_answer_param {
zone_t *zone;
const knot_pkt_t *query;
const struct sockaddr_storage *remote;
tsig_ctx_t tsig_ctx;
zone_t *zone; /*!< Answer bailiwick. */
const knot_pkt_t *query; /*!< Query preceding the answer. */
const struct sockaddr_storage *remote; /*!< Answer origin. */
tsig_ctx_t tsig_ctx; /*!< Signing context. */
};
/*!
* \brief Answer processing context.
*/
struct answer_data {
/* Extensions. */
void *ext;
......@@ -49,3 +64,5 @@ struct answer_data {
struct process_answer_param *param; /*!< Module parameters. */
mm_ctx_t *mm; /*!< Memory context. */
};
/*! @} */
......@@ -24,8 +24,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PROCESS_QUERY_H_
#define _PROCESS_QUERY_H_
#pragma once
#include "libknot/processing/process.h"
#include "knot/server/server.h"
......@@ -213,6 +212,4 @@ static inline bool pkt_has_nsid(const knot_pkt_t *pkt)
&& knot_edns_has_option(pkt->opt_rr, KNOT_EDNS_OPTION_NSID);
}
#endif /* _PROCESS_QUERY_H_ */
/*! @} */
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