Initial import
This commit is contained in:
commit
b124d99c36
155 changed files with 49639 additions and 0 deletions
25
lsocket.c
Normal file
25
lsocket.c
Normal file
|
@ -0,0 +1,25 @@
|
|||
/***
|
||||
* 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 "lsocket.h"
|
||||
#include "lcallisto.h"
|
||||
|
||||
|
||||
int luaopen_socket_core(lua_State *L);
|
||||
|
||||
int
|
||||
callistoopen_socket(lua_State *L)
|
||||
{
|
||||
luaopen_socket_core(L);
|
||||
return 1;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue