Skip to content
Snippets Groups Projects
Commit 13324bd7 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Update Doxygen source list and some documentation-related bugfixes.

parent 6bee4aa1
No related branches found
No related tags found
No related merge requests found
......@@ -591,7 +591,11 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = src/ \
INPUT = src/common \
src/libknot \
src/common \
src/knot \
src/zcompile \
Doxy.page.h
# This tag can be used to specify the character encoding of the source files
......@@ -622,7 +626,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE =
EXCLUDE =
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
......
......@@ -77,3 +77,5 @@ static inline crc_t crc_finalize(crc_t crc)
#endif /* __CRC_H__ */
/*! @} */
......@@ -74,7 +74,7 @@ typedef struct fdset_it_t {
/*!
* \brief File descriptor set implementation backend.
* \notice Functions documentation following.
* \note Functions documentation following.
* \internal
*/
struct fdset_backend_t
......
......@@ -53,3 +53,5 @@ void heap_delete(struct heap *, int);
#endif /* _HEAP_H_ */
/*! @} */
......@@ -39,3 +39,5 @@
double tls_rand();
#endif //_KNOTD_ACL_H_
/*! @} */
......@@ -231,7 +231,7 @@ void __attribute__ ((destructor)) slab_deinit()
* Cache helper functions.
*/
/* \notice Not used right now.
/* \note Not used right now.
static void slab_dump(slab_t* slab) {
printf("%s: buffers (bufsize=%zuB, %u/%u free): \n",
......
......@@ -359,3 +359,5 @@ void journal_release(journal_t *journal);
int journal_update_crc(int fd);
#endif /* _KNOTD_JOURNAL_H_ */
/*! @} */
......@@ -200,3 +200,5 @@ int zone_do_sem_checks(knot_zone_contents_t *zone, char do_checks,
knot_node_t **last_node);
#endif // _KNOT_SEMANTIC_CHECK_H_
/*! @} */
......@@ -569,3 +569,5 @@ int knot_rrtype_is_metatype(uint16_t type)
|| type == KNOT_RRTYPE_OPT);
}
/*! @} */
......@@ -55,3 +55,5 @@ static inline uint8_t knot_tolower(uint8_t c) {
}
#endif /* _KNOT_TOLOWER_H_ */
/*! @} */
......@@ -93,7 +93,7 @@ typedef struct knot_zone knot_zone_t;
/*!
* \brief Creates new empty DNS zone.
*
* \notice Zone will be created without contents.
* \note Zone will be created without contents.
*
* \param name Zone owner.
*
......
......@@ -539,3 +539,4 @@ uint16_t parser_rrclass_from_string(const char *name)
return (uint16_t) rrclass;
}
/*! @} */
......@@ -2473,3 +2473,4 @@ void set_bitnsec(uint8_t bits[NSEC_WINDOW_COUNT][NSEC_WINDOW_BITS_SIZE],
bits[window][bit / 8] |= (1 << (7 - bit % 8));
}
/*! @} */
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