/*** * Networking and socket facilities, using LuaSocket. * * This module only provides the core, which * provides support for the low-level TCP and UDP * transport layers. * * @module socket */ #include #include #include "callisto.h" int luaopen_socket_core(lua_State *L); int luaopen_socket(lua_State *L) { luaopen_socket_core(L); return 1; }