2020-05-16 01:10:11 +02:00
|
|
|
|
|
|
|
int lhttp_response(lua_State *L);
|
|
|
|
int lhttp_response_header(lua_State *L);
|
|
|
|
int lhttp_method_text(lua_State *L);
|
|
|
|
int lhttp_request_get_path(lua_State *L);
|
|
|
|
int lhttp_request_get_host(lua_State *L);
|
|
|
|
int lhttp_request_populate_post(lua_State *L);
|
2020-05-17 18:05:00 +02:00
|
|
|
int lhttp_request_populate_qs(lua_State *L);
|
2020-05-16 01:10:11 +02:00
|
|
|
int lhttp_response_cookie(lua_State *L);
|
|
|
|
int lhttp_request_cookie(lua_State *L);
|
|
|
|
int lhttp_argument_get_string(lua_State *L);
|
|
|
|
int lhttp_request_get_ip(lua_State *L);
|
|
|
|
int lhttp_populate_cookies(lua_State *L);
|
|
|
|
int lhttp_file_get(lua_State *L);
|
|
|
|
int lhttp_populate_multipart_form(lua_State *L);
|
|
|
|
void load_kore_libs(lua_State *L);
|
|
|
|
struct http_request* luaL_checkrequest(lua_State *L, int pos);
|