Skip to content
Snippets Groups Projects
Commit 1edad18a authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Project files updates + doxygen fixes

parent 155a8b28
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ PROJECT_NAME = Knot
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 1.5
PROJECT_NUMBER = 1.6
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
......@@ -753,12 +753,11 @@ WARN_LOGFILE =
# spaces.
# Note: If this tag is empty the current directory is searched.
INPUT = src/common \
src/libknot \
src/common \
INPUT = src/dnstap \
src/knot \
src/zscanner \
src/libknot \
src/utils \
src/zscanner \
Doxy.page.h
# This tag can be used to specify the character encoding of the source files
......
// ADD PREDEFINED MACROS HERE!
src
tests
src/common
src/knot
src/libknot
src/utils
src/zscanner
......@@ -14,7 +14,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*!
* \file other/debug.h
* \file common/debug.h
*
* \author Marek Vavrusa <marek.vavrusa@nic.cz>
*
......
/*!
* \file dnstap.h
* \file modules/dnstap.h
*
* \author Marek Vavrusa <marek.vavrusa@nic.cz>
*
......
/*!
* \file zone_update.h
* \file zone-update.h
*
* \author Jan Kadlec <jan.kadlec@nic.cz>
*
......@@ -68,3 +68,4 @@ const zone_node_t *zone_update_get_node(zone_update_t *update,
*/
void zone_update_clear(zone_update_t *update);
/*! @} */
......@@ -52,6 +52,7 @@ int zone_load_journal(zone_t *zone, zone_contents_t *contents);
*
* \param contents
* \param zone
* \param dnssec_refresh
* \return KNOT_EOK or an error
*/
int zone_load_post(zone_contents_t *contents, zone_t *zone, uint32_t *dnssec_refresh);
......
......@@ -57,7 +57,7 @@ typedef struct zloader {
/*!
* \brief Open zone file for loading.
*
* \param zl Output zone loader.
* \param loader Output zone loader.
* \param source Source file name.
* \param origin Zone origin.
* \param semantic_checks Perform semantic checks.
......
......@@ -14,7 +14,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*!
* \file common/macros.h
* \file macros.h
*
* \author Lubos Slovak <lubos.slovak@nic.cz>
*
......
......@@ -62,3 +62,5 @@ int knot_rrset_to_wire(const knot_rrset_t *rrset, uint8_t *wire, uint16_t max_si
*/
int knot_rrset_rr_from_wire(const uint8_t *pkt_wire, size_t *pos,
size_t pkt_size, mm_ctx_t *mm, knot_rrset_t *rrset);
/*! @} */
......@@ -75,12 +75,12 @@ const uint8_t *knot_nsec3param_salt(const knot_rdataset_t *rrs, size_t pos)
* \brief Initialize the structure with NSEC3 params from NSEC3PARAM RR set.
*
* \param params Structure to initialize.
* \param nsec3param The NSEC3PARAM RRs.
* \param rrs The NSEC3PARAM RRs.
*
* \return Error code, KNOT_EOK on success.
*/
int knot_nsec3param_from_wire(knot_nsec3_params_t *params,
const knot_rdataset_t *rrs);
const knot_rdataset_t *rrs);
/*!
* \brief Clean up structure with NSEC3 params (do not deallocate).
*
......
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