2003-05-25 01:54:13 +00:00
|
|
|
#ifndef UDP_H
|
|
|
|
#define UDP_H
|
2003-06-26 18:47:49 +00:00
|
|
|
/*=========================================================================*\
|
|
|
|
* UDP object
|
|
|
|
* LuaSocket toolkit
|
|
|
|
*
|
|
|
|
* The udp.h module provides LuaSocket with support for UDP protocol
|
|
|
|
* (AF_INET, SOCK_DGRAM).
|
|
|
|
*
|
|
|
|
* Two classes are defined: connected and unconnected. UDP objects are
|
|
|
|
* originally unconnected. They can be "connected" to a given address
|
|
|
|
* with a call to the setpeername function. The same function can be used to
|
|
|
|
* break the connection.
|
|
|
|
\*=========================================================================*/
|
2005-09-29 06:11:42 +00:00
|
|
|
#include "lua.h"
|
2002-07-03 19:06:54 +00:00
|
|
|
|
2003-06-09 18:23:40 +00:00
|
|
|
#include "timeout.h"
|
|
|
|
#include "socket.h"
|
2002-07-03 19:06:54 +00:00
|
|
|
|
2004-07-26 05:17:37 +00:00
|
|
|
/* can't be larger than wsocket.c MAXCHUNK!!! */
|
2004-07-16 06:48:48 +00:00
|
|
|
#define UDP_DATAGRAMSIZE 8192
|
2002-07-03 19:06:54 +00:00
|
|
|
|
2003-05-25 01:54:13 +00:00
|
|
|
typedef struct t_udp_ {
|
2005-10-07 04:40:59 +00:00
|
|
|
t_socket sock;
|
|
|
|
t_timeout tm;
|
2012-04-23 00:18:45 +08:00
|
|
|
int family;
|
2002-07-03 19:06:54 +00:00
|
|
|
} t_udp;
|
|
|
|
typedef t_udp *p_udp;
|
|
|
|
|
2004-02-04 14:29:11 +00:00
|
|
|
int udp_open(lua_State *L);
|
2002-07-03 19:06:54 +00:00
|
|
|
|
2003-06-26 18:47:49 +00:00
|
|
|
#endif /* UDP_H */
|