11 lines
210 B
C
11 lines
210 B
C
|
#ifndef _XSOCK_INTERFACE
|
||
|
#define _XSOCK_INTERFACE 1
|
||
|
|
||
|
/* TYPEDEFS et autre trucs non objet */
|
||
|
namespace XSock {
|
||
|
typedef enum {TCP,UDP_RELIABLE,UDP} protocol;
|
||
|
typedef enum {SERVER,CLIENT} xsock_role;
|
||
|
}
|
||
|
|
||
|
#endif
|