luasocket/src/luasocket.h

30 lines
1.1 KiB
C
Raw Normal View History

2000-12-29 23:15:09 +01:00
/*=========================================================================*\
* TCP/IP support for LUA
* Diego Nehab
* 9/11/1999
\*=========================================================================*/
#ifndef _LUASOCKET_H_
#define _LUASOCKET_H_
/* Current luasocket version */
2001-06-04 22:45:17 +02:00
#define LUASOCKET_VERSION "LuaSocket 1.3b"
/*-------------------------------------------------------------------------*\
* 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 */
/*-------------------------------------------------------------------------*\
* Initializes the library interface with Lua and the socket library.
* Defines the symbols exported to Lua.
\*-------------------------------------------------------------------------*/
2000-12-29 23:15:09 +01:00
void lua_socketlibopen(lua_State *L);
#endif /* _LUASOCKET_H_ */