1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_lua: Add a lot of core httpd/apr functionality to mod_lua

(such as regex matching, expr evaluation, changing/fetching server configuration/info - see docs for a complete list).
This also includes a bunch of automatically scraped functions, which may or may not be super useful.
Comments appreciated as always, especially on the more hacky bits.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1420377 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-12-11 20:08:24 +00:00
parent 1a50285096
commit 3b6cdb0f92
4 changed files with 1208 additions and 3 deletions

View File

@@ -88,6 +88,7 @@ static void lua_open_callback(lua_State *L, apr_pool_t *p, void *ctx)
ap_lua_init(L, p);
ap_lua_load_apache2_lmodule(L);
ap_lua_load_request_lmodule(L, p);
ap_lua_load_httpd_functions(L);
ap_lua_load_config_lmodule(L);
}