aboutsummaryrefslogtreecommitdiff
path: root/src/inet.h
blob: 3b0453ed751ea2082504381025d139ee70e2268e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*=========================================================================*\
* Internet domain class
* RCS ID: $Id$
\*=========================================================================*/
#ifndef INET_H_
#define INET_H_ 

#include <lua.h>
#include "lssock.h"

/* class name */
#define INET_CLASS "luasocket(inet)"

/*-------------------------------------------------------------------------*\
* Socket fields
\*-------------------------------------------------------------------------*/
#define INET_FIELDS SOCK_FIELDS

/*-------------------------------------------------------------------------*\
* Socket structure
\*-------------------------------------------------------------------------*/
typedef t_sock t_inet;
typedef t_inet *p_inet;

/*-------------------------------------------------------------------------*\
* Exported functions
\*-------------------------------------------------------------------------*/
void inet_open(lua_State *L);
void inet_construct(lua_State *L, p_inet inet);
void inet_inherit(lua_State *L, cchar *lsclass);

cchar *inet_tryconnect(p_sock sock, cchar *address, ushort);
cchar *inet_trybind(p_sock sock, cchar *address, ushort);
cchar *inet_trysocket(p_inet inet, int type);

#endif /* INET_H_ */