2003-05-25 03:54:13 +02:00
|
|
|
#ifndef TCP_H
|
|
|
|
#define TCP_H
|
2003-06-26 20:47:49 +02:00
|
|
|
/*=========================================================================*\
|
|
|
|
* TCP object
|
|
|
|
* LuaSocket toolkit
|
|
|
|
*
|
|
|
|
* The tcp.h module is basicly a glue that puts together modules buffer.h,
|
|
|
|
* timeout.h socket.h and inet.h to provide the LuaSocket TCP (AF_INET,
|
|
|
|
* SOCK_STREAM) support.
|
|
|
|
*
|
|
|
|
* Three classes are defined: master, client and server. The master class is
|
|
|
|
* a newly created tcp object, that has not been bound or connected. Server
|
|
|
|
* objects are tcp objects bound to some local address. Client objects are
|
|
|
|
* tcp objects either connected to some address or returned by the accept
|
|
|
|
* method of a server object.
|
|
|
|
\*=========================================================================*/
|
2005-09-29 08:11:42 +02:00
|
|
|
#include "lua.h"
|
2003-05-25 03:54:13 +02:00
|
|
|
|
2003-06-09 20:23:40 +02:00
|
|
|
#include "buffer.h"
|
|
|
|
#include "timeout.h"
|
|
|
|
#include "socket.h"
|
2003-05-25 03:54:13 +02:00
|
|
|
|
|
|
|
typedef struct t_tcp_ {
|
2005-10-07 06:40:59 +02:00
|
|
|
t_socket sock;
|
2003-05-25 03:54:13 +02:00
|
|
|
t_io io;
|
2005-10-07 06:40:59 +02:00
|
|
|
t_buffer buf;
|
|
|
|
t_timeout tm;
|
2012-04-22 18:18:45 +02:00
|
|
|
int family;
|
2003-05-25 03:54:13 +02:00
|
|
|
} t_tcp;
|
2004-01-21 19:40:52 +01:00
|
|
|
|
2003-05-25 03:54:13 +02:00
|
|
|
typedef t_tcp *p_tcp;
|
|
|
|
|
2004-02-04 15:29:11 +01:00
|
|
|
int tcp_open(lua_State *L);
|
2003-05-25 03:54:13 +02:00
|
|
|
|
2003-06-26 20:47:49 +02:00
|
|
|
#endif /* TCP_H */
|