*/
static int lua_ap_set_context_info(lua_State *L)
{
-
request_rec *r;
const char *prefix;
const char *document_root;
*/
static int lua_ap_os_escape_path(lua_State *L)
{
-
char *returnValue;
request_rec *r;
const char *path;
*/
static int lua_ap_escape_logitem(lua_State *L)
{
-
char *returnValue;
request_rec *r;
const char *str;
*/
static int lua_ap_strcmp_match(lua_State *L)
{
-
int returnValue;
const char *str;
const char *expected;
*/
static int lua_ap_set_keepalive(lua_State *L)
{
-
int returnValue;
request_rec *r;
luaL_checktype(L, 1, LUA_TUSERDATA);
*/
static int lua_ap_make_etag(lua_State *L)
{
-
char *returnValue;
request_rec *r;
int force_weak;
*/
static int lua_ap_send_interim_response(lua_State *L)
{
-
request_rec *r;
int send_headers = 0;
luaL_checktype(L, 1, LUA_TUSERDATA);
*/
static int lua_ap_custom_response(lua_State *L)
{
-
request_rec *r;
int status;
const char *string;
*/
static int lua_ap_exists_config_define(lua_State *L)
{
-
int returnValue;
const char *name;
luaL_checktype(L, 1, LUA_TSTRING);
static int lua_ap_get_server_name_for_url(lua_State *L)
{
-
const char *servername;
request_rec *r;
luaL_checktype(L, 1, LUA_TUSERDATA);
return 1;
}
-
-
-/**
- * ap_state_query (int query_code) item starts a new field */
+/* ap_state_query (int query_code) item starts a new field */
static int lua_ap_state_query(lua_State *L)
{
*/
static int lua_ap_usleep(lua_State *L)
{
-
apr_interval_time_t msec;
luaL_checktype(L, 1, LUA_TNUMBER);
msec = (apr_interval_time_t)lua_tonumber(L, 1);
}
/* END dispatch methods for request_rec fields */
-
static int req_dispatch(lua_State *L)
{
apr_hash_t *dispatch;