Initial revision

This commit is contained in:
Diego Nehab
2002-07-03 19:06:54 +00:00
parent 9b8bce6465
commit 88026bef8a
7 changed files with 552 additions and 0 deletions

36
src/inet.h Normal file
View File

@ -0,0 +1,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_ */