summaryrefslogtreecommitdiff
path: root/src/domain.c
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-03-09 17:35:19 +0100
committerrodarima <rodarima@gmail.com>2024-03-09 18:43:51 +0100
commit4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch)
treeb8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/domain.c
parentbde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff)
Use Doxygen comments for C files
Diffstat (limited to 'src/domain.c')
-rw-r--r--src/domain.c6
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)