diff options
author | pixel <pixel> | 2008-08-04 09:38:55 +0000 |
---|---|---|
committer | pixel <pixel> | 2008-08-04 09:38:55 +0000 |
commit | 6106ce4290152d0bf588bc97c0ef625f0a3006db (patch) | |
tree | 61ff65d6e79a94cf32ddaec65a8a8f20f2ffab7a /src/plugin-luahttp.cc | |
parent | 1ee5adc42dbf6dafd1a16933b4cd1e3b8667f265 (diff) |
Adding built-in debugging system.
Diffstat (limited to 'src/plugin-luahttp.cc')
-rw-r--r-- | src/plugin-luahttp.cc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/plugin-luahttp.cc b/src/plugin-luahttp.cc index 819a2f3..ae7ee34 100644 --- a/src/plugin-luahttp.cc +++ b/src/plugin-luahttp.cc @@ -1,9 +1,17 @@ #include <LuaHttp.h> +static void _init_plugin(Lua * L) { + LuaHttpResponse::pushstatics(L); +} + extern "C" { -void init_plugin(Lua * L) { - LuaHttpResponse::pushstatics(L); +__attribute__ ((weak)) void init_plugin(Lua * L) { + _init_plugin(L); +} + +void luahttp_init(Lua * L) { + _init_plugin(L); } } |