Include dependency graph for net.c:

Functions | |
| static int | vlclua_url_parse (lua_State *L) |
| static int | vlclua_net_listen_close (lua_State *) |
| static int | vlclua_net_accept (lua_State *) |
| static int | vlclua_net_listen_tcp (lua_State *L) |
| static int | vlclua_net_close (lua_State *L) |
| static int | vlclua_net_send (lua_State *L) |
| static int | vlclua_net_recv (lua_State *L) |
| static int | vlclua_net_select (lua_State *L) |
| static int | vlclua_fd_clr (lua_State *) |
| static int | vlclua_fd_isset (lua_State *) |
| static int | vlclua_fd_set (lua_State *) |
| static int | vlclua_fd_zero (lua_State *) |
| static int | vlclua_fd_set_new (lua_State *L) |
| static int | vlclua_fd_write (lua_State *L) |
| static int | vlclua_fd_read (lua_State *L) |
| static int | vlclua_stat (lua_State *L) |
| static int | vlclua_opendir (lua_State *L) |
| void | luaopen_net (lua_State *L) |
Variables | |
| static const luaL_Reg | vlclua_net_listen_reg [] |
| static const luaL_Reg | vlclua_fd_set_reg [] |
| static const luaL_Reg | vlclua_net_reg [] |
| void luaopen_net | ( | lua_State * | L | ) |
| static int vlclua_fd_clr | ( | lua_State * | ) | [static] |
| static int vlclua_fd_isset | ( | lua_State * | ) | [static] |
| static int vlclua_fd_read | ( | lua_State * | L | ) | [static] |
| static int vlclua_fd_set | ( | lua_State * | ) | [static] |
| static int vlclua_fd_set_new | ( | lua_State * | L | ) | [static] |
| static int vlclua_fd_write | ( | lua_State * | L | ) | [static] |
| static int vlclua_fd_zero | ( | lua_State * | ) | [static] |
| static int vlclua_net_accept | ( | lua_State * | ) | [static] |
| static int vlclua_net_close | ( | lua_State * | L | ) | [static] |
| static int vlclua_net_listen_close | ( | lua_State * | ) | [static] |
| static int vlclua_net_listen_tcp | ( | lua_State * | L | ) | [static] |
| static int vlclua_net_recv | ( | lua_State * | L | ) | [static] |
| static int vlclua_net_select | ( | lua_State * | L | ) | [static] |
| static int vlclua_net_send | ( | lua_State * | L | ) | [static] |
| static int vlclua_opendir | ( | lua_State * | L | ) | [static] |
| static int vlclua_stat | ( | lua_State * | L | ) | [static] |
| static int vlclua_url_parse | ( | lua_State * | L | ) | [static] |
const luaL_Reg vlclua_fd_set_reg[] [static] |
Initial value:
{
{ "clr", vlclua_fd_clr },
{ "isset", vlclua_fd_isset },
{ "set", vlclua_fd_set },
{ "zero", vlclua_fd_zero },
{ NULL, NULL }
}
const luaL_Reg vlclua_net_listen_reg[] [static] |
Initial value:
{
{ "accept", vlclua_net_accept },
{ NULL, NULL }
}
const luaL_Reg vlclua_net_reg[] [static] |
Initial value:
{
{ "url_parse", vlclua_url_parse },
{ "listen_tcp", vlclua_net_listen_tcp },
{ "close", vlclua_net_close },
{ "send", vlclua_net_send },
{ "recv", vlclua_net_recv },
{ "select", vlclua_net_select },
{ "fd_set_new", vlclua_fd_set_new },
{ "read", vlclua_fd_read },
{ "write", vlclua_fd_write },
{ "stat", vlclua_stat },
{ "opendir", vlclua_opendir },
{ NULL, NULL }
}
1.5.1