Exposed Lua support functions.

This commit is contained in:
Jurie Horneman 2014-03-09 21:09:29 +01:00
parent 8dd76e6ef4
commit 1b3a1b74ac
2 changed files with 11 additions and 3 deletions

View File

@ -3704,19 +3704,19 @@ static void *mmap(void *addr, int64_t len, int prot, int flags, int fd,
#include <sys/mman.h>
#endif
static void reg_string(struct lua_State *L, const char *name, const char *val) {
void reg_string(struct lua_State *L, const char *name, const char *val) {
lua_pushstring(L, name);
lua_pushstring(L, val);
lua_rawset(L, -3);
}
static void reg_int(struct lua_State *L, const char *name, int val) {
void reg_int(struct lua_State *L, const char *name, int val) {
lua_pushstring(L, name);
lua_pushinteger(L, val);
lua_rawset(L, -3);
}
static void reg_function(struct lua_State *L, const char *name,
void reg_function(struct lua_State *L, const char *name,
lua_CFunction func, struct mg_connection *conn) {
lua_pushstring(L, name);
lua_pushlightuserdata(L, conn);

View File

@ -112,6 +112,14 @@ void *mg_start_thread(void *(*func)(void *), void *param);
char *mg_md5(char buf[33], ...);
int mg_authorize_digest(struct mg_connection *c, FILE *fp);
// Lua utility functions
#ifdef MONGOOSE_USE_LUA
static void reg_string(struct lua_State *L, const char *name, const char *val);
static void reg_int(struct lua_State *L, const char *name, int val);
static void reg_function(struct lua_State *L, const char *name,
lua_CFunction func, struct mg_connection *conn);
#endif
#ifdef __cplusplus
}
#endif // __cplusplus