Initial commit
This commit is contained in:
@@ -0,0 +1,4 @@
|
|||||||
|
*.la
|
||||||
|
*.lo
|
||||||
|
*.slo
|
||||||
|
.libs/
|
||||||
@@ -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
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user