mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-12-26 04:28:20 +01:00
Updated for release 1.2.1
Buffer size constants are now part of luasocket.h.
This commit is contained in:
parent
a221087bc0
commit
297576affa
@ -7,9 +7,23 @@
|
|||||||
#ifndef _LUASOCKET_H_
|
#ifndef _LUASOCKET_H_
|
||||||
#define _LUASOCKET_H_
|
#define _LUASOCKET_H_
|
||||||
|
|
||||||
#define LUASOCKET_VERSION "LuaSocket 1.2"
|
/* Current luasocket version */
|
||||||
#define LUASOCKET_BUFFERSIZE 8192
|
#define LUASOCKET_VERSION "LuaSocket 1.2.1"
|
||||||
|
|
||||||
|
/*-------------------------------------------------------------------------*\
|
||||||
|
* 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.
|
||||||
|
\*-------------------------------------------------------------------------*/
|
||||||
void lua_socketlibopen(lua_State *L);
|
void lua_socketlibopen(lua_State *L);
|
||||||
|
|
||||||
#endif /* _LUASOCKET_H_ */
|
#endif /* _LUASOCKET_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user