Files
CyberPanel/install-cn/openlitespeed-1.4.28/addon/example/testhttpauth.c
qtwrk 9227098c76 installer for chinese network
modifed litespeed/mariadb/powerdns/phpmyadmin/rainloop download URL to mirror for improve chinese network download speed.
2018-03-10 23:25:48 +01:00

56 lines
2.2 KiB
C

/*****************************************************************************
* Open LiteSpeed is an open source HTTP server. *
* Copyright (C) 2013 - 2015 LiteSpeed Technologies, Inc. *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see http://www.gnu.org/licenses/. *
*****************************************************************************/
#include "../include/ls.h"
#include <string.h>
#include <stdint.h>
#include "stdlib.h"
#include <unistd.h>
#define MNAME testhttpauth
lsi_module_t MNAME;
int httpAuth(lsi_param_t *rec)
{
//test if the IP is 127.0.0.1 pass through, otherwise, reply 403
char ip[16] = {0};
g_api->get_req_var_by_id(rec->session, LSI_VAR_GEOIP_ADDR, ip, 16);
if (strcmp(ip, "127.0.0.1") == 0)
return LSI_OK;
else
{
g_api->set_status_code(rec->session, 403);
g_api->log(rec->session, LSI_LOG_INFO, "Access denied since ip = %s.\n",
ip);
return LSI_ERROR;
}
}
static lsi_serverhook_t serverHooks[] =
{
{LSI_HKPT_HTTP_AUTH, httpAuth, LSI_HOOK_NORMAL, LSI_FLAG_ENABLED},
LSI_HOOK_END //Must put this at the end position
};
static int init_module(lsi_module_t *pModule)
{
return 0;
}
lsi_module_t MNAME = { LSI_MODULE_SIGNATURE, init_module, NULL, NULL, "", serverHooks};