mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-17 00:06:59 +00:00
docs: improve doxygen documentation
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
887845df2a
commit
c687f38ed6
7 changed files with 111 additions and 58 deletions
|
|
@ -66,6 +66,9 @@ int (*leasecomp) (const struct leases_t *restrict a, const struct leases_t *rest
|
|||
void (*add_lease) (struct conf_t *state, union ipaddr_t *ip, enum ltype type);
|
||||
struct leases_t *(*find_lease) (struct conf_t *state, union ipaddr_t *ip);
|
||||
|
||||
/*! \brief An option argument parser to populate state header_limit and
|
||||
* number_limit values.
|
||||
*/
|
||||
static int return_limit(const char c)
|
||||
{
|
||||
if ('0' <= c && c < '8')
|
||||
|
|
@ -129,7 +132,7 @@ static void skip_arg_parse(struct conf_t *state, char *optarg)
|
|||
}
|
||||
}
|
||||
|
||||
/*! \brief Command options parser. */
|
||||
/*! \brief Command line options parser. */
|
||||
static char parse_command_line_opts(struct conf_t *state, int argc, char **argv)
|
||||
{
|
||||
enum {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue