luasocket/src/udp.h

20 lines
235 B
C
Raw Normal View History

2003-05-25 03:54:13 +02:00
#ifndef UDP_H
#define UDP_H
2002-07-03 21:06:54 +02:00
2003-05-25 03:54:13 +02:00
#include <lua.h>
2002-07-03 21:06:54 +02:00
2003-05-25 03:54:13 +02:00
#include "tm.h"
#include "sock.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;
void udp_open(lua_State *L);
#endif