mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
mod_lua: Redesign the table construction/access mechanism, so we pass on a struct with the request_rec, the table pointer and the table name instead of just the table pointer. This allows us to use the request_rec for logging/editing purposes, as well as inform the user which exact table in the request_rec was modified.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1582858 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -30,7 +30,7 @@
|
||||
|
||||
|
||||
int ap_lua_init(lua_State *L, apr_pool_t * p);
|
||||
apr_table_t *ap_lua_check_apr_table(lua_State *L, int index);
|
||||
void ap_lua_push_apr_table(lua_State *L, apr_table_t *t);
|
||||
req_table_t *ap_lua_check_apr_table(lua_State *L, int index);
|
||||
void ap_lua_push_apr_table(lua_State *L, req_table_t *t);
|
||||
|
||||
#endif /* !_LUA_APR_H_ */
|
||||
|
Reference in New Issue
Block a user