
Functions | |
| static int | vlclua_acl_create_inner (lua_State *, vlc_acl_t *) |
| static int | vlclua_acl_delete (lua_State *) |
| static int | vlclua_acl_check (lua_State *) |
| static int | vlclua_acl_duplicate (lua_State *) |
| static int | vlclua_acl_add_host (lua_State *) |
| static int | vlclua_acl_add_net (lua_State *) |
| static int | vlclua_acl_load_file (lua_State *) |
| static int | vlclua_acl_create (lua_State *L) |
| void | luaopen_acl (lua_State *L) |
Variables | |
| static const luaL_Reg | vlclua_acl_reg [] |
| void luaopen_acl | ( | lua_State * | L | ) |
| static int vlclua_acl_add_host | ( | lua_State * | L | ) | [static] |
References ACL_AddHost, and luaL_checkboolean().
| static int vlclua_acl_add_net | ( | lua_State * | L | ) | [static] |
References ACL_AddNet(), and luaL_checkboolean().
| static int vlclua_acl_check | ( | lua_State * | L | ) | [static] |
References ACL_Check().
| static int vlclua_acl_create | ( | lua_State * | L | ) | [static] |
References ACL_Create, luaL_checkboolean(), vlclua_acl_create_inner(), and vlclua_get_this().
Referenced by luaopen_acl().
References vlclua_acl_delete(), and vlclua_acl_reg.
Referenced by vlclua_acl_create(), and vlclua_acl_duplicate().
| static int vlclua_acl_delete | ( | lua_State * | L | ) | [static] |
| static int vlclua_acl_duplicate | ( | lua_State * | L | ) | [static] |
References ACL_Duplicate, vlclua_acl_create_inner(), and vlclua_get_this().
| static int vlclua_acl_load_file | ( | lua_State * | L | ) | [static] |
References ACL_LoadFile().
const luaL_Reg vlclua_acl_reg[] [static] |
Initial value:
{
{ "check", vlclua_acl_check },
{ "duplicate", vlclua_acl_duplicate },
{ "add_host", vlclua_acl_add_host },
{ "add_net", vlclua_acl_add_net },
{ "load_file", vlclua_acl_load_file },
{ NULL, NULL }
}
Referenced by vlclua_acl_create_inner().
1.5.6