diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/domain.c | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/domain.c')
-rw-r--r-- | src/domain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/domain.c b/src/domain.c index 8bff39de..a85bde2f 100644 --- a/src/domain.c +++ b/src/domain.c @@ -25,7 +25,7 @@ static int num_exceptions_max = 1; static bool_t default_deny = FALSE; -/* +/** * Parse domainrc. */ void a_Domain_parse(FILE *fp) @@ -87,7 +87,7 @@ void a_Domain_freeall(void) dFree(exceptions); } -/* +/** * Wildcard ('*') pattern always matches. * "example.org" pattern matches "example.org". * ".example.org" pattern matches "example.org" and "sub.example.org". @@ -110,7 +110,7 @@ static bool_t Domain_match(const char *host, const char *pattern) { return cmp ? FALSE : TRUE; } -/* +/** * Is the resource at 'source' permitted to request the resource at 'dest'? */ bool_t a_Domain_permit(const DilloUrl *source, const DilloUrl *dest) |