1999-07-23 17:24:25 +00:00
|
|
|
/* -------------------------------------------------------------------------
|
|
|
|
* Project: GSocket (Generic Socket) for WX
|
|
|
|
* Name: gsockunx.h
|
|
|
|
* Purpose: GSocket Unix header
|
|
|
|
* CVSID: $Id$
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
1999-09-30 23:53:10 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
#ifndef __GSOCK_UNX_H
|
|
|
|
#define __GSOCK_UNX_H
|
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
#ifndef __GSOCKET_STANDALONE__
|
1999-08-06 10:10:10 +00:00
|
|
|
#include "wx/setup.h"
|
1999-09-30 23:53:10 +00:00
|
|
|
#endif
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
#ifndef __GSOCKET_STANDALONE__
|
1999-08-06 10:10:10 +00:00
|
|
|
#include "wx/gsocket.h"
|
1999-09-30 23:53:10 +00:00
|
|
|
#else
|
|
|
|
#include "gsocket.h"
|
|
|
|
#endif
|
|
|
|
|
1999-08-06 10:10:10 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
|
|
|
|
/* Definition of GSocket */
|
1999-09-30 23:53:10 +00:00
|
|
|
struct _GSocket
|
|
|
|
{
|
1999-07-22 17:51:54 +00:00
|
|
|
int m_fd;
|
1999-09-30 23:53:10 +00:00
|
|
|
GAddress *m_local;
|
|
|
|
GAddress *m_peer;
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError m_error;
|
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
bool m_non_blocking;
|
|
|
|
bool m_server;
|
|
|
|
bool m_stream;
|
|
|
|
bool m_oriented;
|
1999-09-05 10:23:22 +00:00
|
|
|
bool m_establishing;
|
1999-07-30 17:54:18 +00:00
|
|
|
unsigned long m_timeout;
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-07-30 17:54:18 +00:00
|
|
|
/* Callbacks */
|
1999-09-30 23:53:10 +00:00
|
|
|
GSocketEventFlags m_detected;
|
1999-08-09 17:35:30 +00:00
|
|
|
GSocketCallback m_cbacks[GSOCK_MAX_EVENT];
|
1999-07-22 17:51:54 +00:00
|
|
|
char *m_data[GSOCK_MAX_EVENT];
|
|
|
|
|
|
|
|
char *m_gui_dependent;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Definition of GAddress */
|
1999-09-30 23:53:10 +00:00
|
|
|
struct _GAddress
|
|
|
|
{
|
1999-07-22 17:51:54 +00:00
|
|
|
struct sockaddr *m_addr;
|
|
|
|
size_t m_len;
|
|
|
|
|
|
|
|
GAddressType m_family;
|
|
|
|
int m_realfamily;
|
|
|
|
|
|
|
|
GSocketError m_error;
|
|
|
|
};
|
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
/* Input / Output */
|
|
|
|
|
|
|
|
GSocketError _GSocket_Input_Timeout(GSocket *socket);
|
|
|
|
GSocketError _GSocket_Output_Timeout(GSocket *socket);
|
1999-07-22 17:51:54 +00:00
|
|
|
int _GSocket_Recv_Stream(GSocket *socket, char *buffer, int size);
|
|
|
|
int _GSocket_Recv_Dgram(GSocket *socket, char *buffer, int size);
|
|
|
|
int _GSocket_Send_Stream(GSocket *socket, const char *buffer, int size);
|
|
|
|
int _GSocket_Send_Dgram(GSocket *socket, const char *buffer, int size);
|
1999-09-30 23:53:10 +00:00
|
|
|
|
|
|
|
/* Callbacks */
|
|
|
|
|
|
|
|
void _GSocket_Enable(GSocket *socket, GSocketEvent event);
|
|
|
|
void _GSocket_Disable(GSocket *socket, GSocketEvent event);
|
1999-07-22 17:51:54 +00:00
|
|
|
void _GSocket_Detected_Read(GSocket *socket);
|
|
|
|
void _GSocket_Detected_Write(GSocket *socket);
|
1999-09-30 23:53:10 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
void _GSocket_GUI_Init(GSocket *socket);
|
|
|
|
void _GSocket_GUI_Destroy(GSocket *socket);
|
1999-09-30 23:53:10 +00:00
|
|
|
void _GSocket_Enable_Events(GSocket *socket);
|
|
|
|
void _GSocket_Disable_Events(GSocket *socket);
|
|
|
|
void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event);
|
|
|
|
void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event);
|
|
|
|
|
|
|
|
/* GAddress */
|
1999-08-02 17:46:43 +00:00
|
|
|
|
1999-08-04 18:02:24 +00:00
|
|
|
GSocketError _GAddress_translate_from(GAddress *address,
|
|
|
|
struct sockaddr *addr, int len);
|
|
|
|
GSocketError _GAddress_translate_to(GAddress *address,
|
|
|
|
struct sockaddr **addr, int *len);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-08-04 18:02:24 +00:00
|
|
|
GSocketError _GAddress_Init_INET(GAddress *address);
|
|
|
|
GSocketError _GAddress_Init_UNIX(GAddress *address);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-08-06 10:10:10 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
1999-09-30 23:53:10 +00:00
|
|
|
#endif /* __cplusplus */
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-30 23:53:10 +00:00
|
|
|
#endif /* __GSOCK_UNX_H */
|