2003-05-25 03:54:13 +02:00
|
|
|
#ifndef UDP_H
|
|
|
|
#define UDP_H
|
2003-06-26 20:47:49 +02: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.
|
|
|
|
*
|
|
|
|
* RCS ID: $Id$
|
|
|
|
\*=========================================================================*/
|
2003-05-25 03:54:13 +02:00
|
|
|
#include <lua.h>
|
2002-07-03 21:06:54 +02:00
|
|
|
|
2003-06-09 20:23:40 +02:00
|
|
|
#include "timeout.h"
|
|
|
|
#include "socket.h"
|
2002-07-03 21:06:54 +02:00
|
|
|
|
|
|
|
#define UDP_DATAGRAMSIZE 576
|
|
|
|
|
2003-05-25 03:54:13 +02:00
|
|
|
typedef struct t_udp_ {
|
|
|
|
t_sock sock;
|
|
|
|
t_tm tm;
|
2002-07-03 21:06:54 +02:00
|
|
|
} t_udp;
|
|
|
|
typedef t_udp *p_udp;
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
int udp_open(lua_State *L);
|
2002-07-03 21:06:54 +02:00
|
|
|
|
2003-06-26 20:47:49 +02:00
|
|
|
#endif /* UDP_H */
|