callisto/lsocket.c
Jeremy Baxter 290289cbf5 Refactor and fix up a lot of code
Don't tell the boss I forgot a couple of free()s...
2023-11-26 17:13:41 +13:00

23 lines
378 B
C

/***
* 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 <lua.h>
#include <lauxlib.h>
#include "callisto.h"
int luaopen_socket_core(lua_State *);
int
luaopen_socket(lua_State *L)
{
luaopen_socket_core(L);
return 1;
}