Initial commit

This commit is contained in:
2026-04-28 21:40:33 +02:00
commit 69f361dd0e
2 changed files with 26 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
*.la
*.lo
*.slo
.libs/
+22
View File
@@ -0,0 +1,22 @@
/*
SPDX-License-Identifier: AGPL-3.0-or-later
Copyright (C) 2026 mrkubax10 <mrkubax10@onet.pl>
*/
#include <httpd.h>
#include <http_core.h>
#include <stdio.h>
static void register_hooks(apr_pool_t* pool) {
printf("Registering hooks\n");
}
module AP_MODULE_DECLARE_DATA webgate_module = {
STANDARD20_MODULE_STUFF,
NULL,
NULL,
NULL,
NULL,
NULL,
register_hooks
};