mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 04:49:08 +08:00
cc05b877a2
first commit acl to github
30 lines
756 B
C
30 lines
756 B
C
#include "app_main.h"
|
|
#include "app_log.h"
|
|
#include "service_main.h"
|
|
|
|
static const char reply_403_close[] = "HTTP/1.1 403 Permission denied\r\n"
|
|
"Accept-Ranges: bytes\r\n"
|
|
"Server: dict_http/1.0.0 (Unix)\r\n"
|
|
"Content-Length: 9\r\n"
|
|
"Connection: close\r\n"
|
|
"\r\n"
|
|
"403 Permission denied!\r\n";
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
/* acl_debug_malloc_init("log.txt"); */
|
|
app_main(argc, argv, service_main, NULL,
|
|
APP_CTL_INIT_FN, service_init,
|
|
/* APP_CTL_INIT_CTX, NULL, */
|
|
APP_CTL_EXIT_FN, service_exit,
|
|
/* APP_CTL_EXIT_CTX, NULL, */
|
|
APP_CTL_CFG_BOOL, service_conf_bool_tab,
|
|
APP_CTL_CFG_INT, service_conf_int_tab,
|
|
APP_CTL_CFG_STR, service_conf_str_tab,
|
|
APP_CTL_DENY_INFO, reply_403_close,
|
|
APP_CTL_END);
|
|
|
|
exit (0);
|
|
}
|
|
|