36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/*=========================================================================*\
|
|
* TCP/IP support for LUA
|
|
* Diego Nehab
|
|
* 9/11/1999
|
|
\*=========================================================================*/
|
|
|
|
#ifndef _LUASOCKET_H_
|
|
#define _LUASOCKET_H_
|
|
|
|
/* Current luasocket version */
|
|
#define LUASOCKET_VERSION "LuaSocket 1.4"
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
* These can be changed to according to the applications' needs.
|
|
\*-------------------------------------------------------------------------*/
|
|
/* TCP input buffer size */
|
|
#define LUASOCKET_TCPBUFFERSIZE 8192
|
|
|
|
/* The largest datagram handled by LuaSocket */
|
|
#define LUASOCKET_UDPBUFFERSIZE 4096
|
|
/* note that 576 bytes is the maximum safe value */
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
* This macro prefixes all exported API functions
|
|
\*-------------------------------------------------------------------------*/
|
|
#ifndef LUASOCKET_API
|
|
#define LUASOCKET_API extern
|
|
#endif
|
|
|
|
/*-------------------------------------------------------------------------*\
|
|
* Initializes the library interface with Lua and the socket library.
|
|
* Defines the symbols exported to Lua.
|
|
\*-------------------------------------------------------------------------*/
|
|
LUASOCKET_API int lua_socketlibopen(lua_State *L);
|
|
|
|
#endif /* _LUASOCKET_H_ */
|