1999-07-22 17:51:54 +00:00
|
|
|
/* -------------------------------------------------------------------------
|
|
|
|
* Project: GSocket (Generic Socket)
|
|
|
|
* Name: gsocket.h
|
2001-05-02 19:48:15 +00:00
|
|
|
* Author: Guilhem Lavaux
|
2000-01-21 03:10:42 +00:00
|
|
|
* Guillermo Rodriguez Garcia <guille@iies.es> (maintainer)
|
1999-07-22 17:51:54 +00:00
|
|
|
* Purpose: GSocket include file (system independent)
|
|
|
|
* CVSID: $Id$
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
2000-01-21 03:10:42 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
#ifndef __GSOCKET_H
|
|
|
|
#define __GSOCKET_H
|
|
|
|
|
2004-08-04 03:22:44 +00:00
|
|
|
// FIXME: OS/2 needs to move to modern C++ GSocket
|
|
|
|
#if defined(__OS2__)
|
2004-01-18 07:46:18 +00:00
|
|
|
#undef wxUSE_GSOCKET_CPLUSPLUS
|
2004-08-04 03:22:44 +00:00
|
|
|
#else
|
|
|
|
#define wxUSE_GSOCKET_CPLUSPLUS 1
|
|
|
|
#endif
|
|
|
|
|
2004-01-18 07:46:18 +00:00
|
|
|
#if !defined(__cplusplus) && defined(wxUSE_GSOCKET_CPLUSPLUS)
|
|
|
|
#error "You need to compile this file (probably a GUI gsock peice) as C++"
|
|
|
|
#endif
|
|
|
|
|
1999-09-15 02:21:15 +00:00
|
|
|
#ifndef __GSOCKET_STANDALONE__
|
1999-08-06 10:10:10 +00:00
|
|
|
#include "wx/setup.h"
|
2003-10-22 14:46:57 +00:00
|
|
|
#include "wx/platform.h"
|
2002-07-02 01:21:09 +00:00
|
|
|
|
2004-03-09 22:48:53 +00:00
|
|
|
#include "wx/dlimpexp.h" /* for WXDLLIMPEXP_NET */
|
2002-07-02 01:21:09 +00:00
|
|
|
|
1999-09-15 02:21:15 +00:00
|
|
|
#endif
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-15 02:21:15 +00:00
|
|
|
#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-08-09 17:35:30 +00:00
|
|
|
#include <stddef.h>
|
2002-09-12 13:48:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Including sys/types.h under cygwin results in the warnings about "fd_set
|
|
|
|
having been defined in sys/types.h" when winsock.h is included later and
|
|
|
|
doesn't seem to be necessary anyhow. It's not needed under Mac neither.
|
|
|
|
*/
|
2003-07-12 17:58:22 +00:00
|
|
|
#if !defined(__WXMAC__) && !defined(__CYGWIN__) && !defined(__WXWINCE__)
|
1999-07-22 17:51:54 +00:00
|
|
|
#include <sys/types.h>
|
2000-08-09 11:14:15 +00:00
|
|
|
#endif
|
1999-07-22 17:51:54 +00:00
|
|
|
|
2003-07-12 17:58:22 +00:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
2004-01-18 07:46:18 +00:00
|
|
|
#ifdef wxUSE_GSOCKET_CPLUSPLUS
|
2004-08-03 03:33:36 +00:00
|
|
|
class GSocket;
|
2004-03-09 22:48:53 +00:00
|
|
|
#endif
|
2004-01-18 07:46:18 +00:00
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-01-18 07:46:18 +00:00
|
|
|
#ifndef wxUSE_GSOCKET_CPLUSPLUS
|
1999-07-22 17:51:54 +00:00
|
|
|
typedef struct _GSocket GSocket;
|
2004-03-09 22:48:53 +00:00
|
|
|
#endif
|
1999-07-22 17:51:54 +00:00
|
|
|
typedef struct _GAddress GAddress;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
GSOCK_NOFAMILY = 0,
|
|
|
|
GSOCK_INET,
|
|
|
|
GSOCK_INET6,
|
|
|
|
GSOCK_UNIX
|
|
|
|
} GAddressType;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
GSOCK_STREAMED,
|
|
|
|
GSOCK_UNSTREAMED
|
|
|
|
} GSocketStream;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
GSOCK_NOERROR = 0,
|
|
|
|
GSOCK_INVOP,
|
|
|
|
GSOCK_IOERR,
|
|
|
|
GSOCK_INVADDR,
|
|
|
|
GSOCK_INVSOCK,
|
|
|
|
GSOCK_NOHOST,
|
1999-08-01 07:26:36 +00:00
|
|
|
GSOCK_INVPORT,
|
1999-08-09 17:35:30 +00:00
|
|
|
GSOCK_WOULDBLOCK,
|
1999-09-05 10:23:22 +00:00
|
|
|
GSOCK_TIMEDOUT,
|
2004-07-25 11:16:31 +00:00
|
|
|
GSOCK_MEMERR,
|
|
|
|
GSOCK_OPTERR,
|
1999-07-22 17:51:54 +00:00
|
|
|
} GSocketError;
|
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* See below for an explanation on how events work.
|
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
typedef enum {
|
|
|
|
GSOCK_INPUT = 0,
|
|
|
|
GSOCK_OUTPUT = 1,
|
|
|
|
GSOCK_CONNECTION = 2,
|
|
|
|
GSOCK_LOST = 3,
|
|
|
|
GSOCK_MAX_EVENT = 4
|
|
|
|
} GSocketEvent;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
GSOCK_INPUT_FLAG = 1 << GSOCK_INPUT,
|
|
|
|
GSOCK_OUTPUT_FLAG = 1 << GSOCK_OUTPUT,
|
|
|
|
GSOCK_CONNECTION_FLAG = 1 << GSOCK_CONNECTION,
|
1999-07-23 21:03:02 +00:00
|
|
|
GSOCK_LOST_FLAG = 1 << GSOCK_LOST
|
1999-07-22 17:51:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef int GSocketEventFlags;
|
|
|
|
|
1999-07-30 17:54:18 +00:00
|
|
|
typedef void (*GSocketCallback)(GSocket *socket, GSocketEvent event,
|
1999-07-23 21:03:02 +00:00
|
|
|
char *cdata);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
|
|
|
|
2003-08-07 12:26:17 +00:00
|
|
|
/* Functions tables for internal use by GSocket code: */
|
|
|
|
|
2004-08-03 19:18:39 +00:00
|
|
|
#if !defined(__WINDOWS__) && !defined(wxUSE_GSOCKET_CPLUSPLUS)
|
2003-08-07 12:26:17 +00:00
|
|
|
struct GSocketBaseFunctionsTable
|
|
|
|
{
|
|
|
|
void (*Detected_Read)(GSocket *socket);
|
|
|
|
void (*Detected_Write)(GSocket *socket);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2004-08-03 19:18:39 +00:00
|
|
|
#if defined(wxUSE_GSOCKET_CPLUSPLUS)
|
2004-08-03 03:33:36 +00:00
|
|
|
/* Actually this is a misnomer now, but reusing this name means I don't
|
|
|
|
have to ifdef app traits or common socket code */
|
|
|
|
class GSocketGUIFunctionsTable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool OnInit() = 0;
|
|
|
|
virtual void OnExit() = 0;
|
|
|
|
virtual bool CanUseEventLoop() = 0;
|
|
|
|
virtual bool Init_Socket(GSocket *socket) = 0;
|
|
|
|
virtual void Destroy_Socket(GSocket *socket) = 0;
|
|
|
|
#ifndef __WINDOWS__
|
|
|
|
virtual void Install_Callback(GSocket *socket, GSocketEvent event) = 0;
|
|
|
|
virtual void Uninstall_Callback(GSocket *socket, GSocketEvent event) = 0;
|
|
|
|
#endif
|
|
|
|
virtual void Enable_Events(GSocket *socket) = 0;
|
|
|
|
virtual void Disable_Events(GSocket *socket) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
#else
|
2003-08-07 12:26:17 +00:00
|
|
|
struct GSocketGUIFunctionsTable
|
|
|
|
{
|
|
|
|
int (*GUI_Init)(void);
|
|
|
|
void (*GUI_Cleanup)(void);
|
|
|
|
int (*GUI_Init_Socket)(GSocket *socket);
|
|
|
|
void (*GUI_Destroy_Socket)(GSocket *socket);
|
|
|
|
#ifndef __WINDOWS__
|
|
|
|
void (*Install_Callback)(GSocket *socket, GSocketEvent event);
|
|
|
|
void (*Uninstall_Callback)(GSocket *socket, GSocketEvent event);
|
|
|
|
#endif
|
|
|
|
void (*Enable_Events)(GSocket *socket);
|
|
|
|
void (*Disable_Events)(GSocket *socket);
|
|
|
|
};
|
2004-08-03 19:18:39 +00:00
|
|
|
#endif /* defined(wxUSE_GSOCKET_CPLUSPLUS) */
|
2003-08-07 12:26:17 +00:00
|
|
|
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* Global initializers */
|
1999-07-25 14:26:15 +00:00
|
|
|
|
2003-08-07 12:26:17 +00:00
|
|
|
/* Sets GUI functions callbacks. Must be called *before* GSocket_Init
|
|
|
|
if the app uses async sockets. */
|
|
|
|
void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc);
|
|
|
|
|
1999-07-25 14:26:15 +00:00
|
|
|
/* GSocket_Init() must be called at the beginning */
|
2000-03-16 21:57:20 +00:00
|
|
|
int GSocket_Init(void);
|
2000-01-21 03:10:42 +00:00
|
|
|
|
|
|
|
/* GSocket_Cleanup() must be called at the end */
|
2000-03-14 09:32:27 +00:00
|
|
|
void GSocket_Cleanup(void);
|
1999-07-25 14:26:15 +00:00
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
/* Constructors / Destructors */
|
|
|
|
|
2000-03-14 09:32:27 +00:00
|
|
|
GSocket *GSocket_new(void);
|
2004-08-03 19:18:39 +00:00
|
|
|
#if !defined(wxUSE_GSOCKET_CPLUSPLUS)
|
1999-07-22 17:51:54 +00:00
|
|
|
void GSocket_destroy(GSocket *socket);
|
2004-08-03 03:33:36 +00:00
|
|
|
#endif
|
1999-07-22 17:51:54 +00:00
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
|
2004-01-18 07:46:18 +00:00
|
|
|
#ifndef wxUSE_GSOCKET_CPLUSPLUS
|
2000-01-21 03:10:42 +00:00
|
|
|
|
|
|
|
/* GSocket_Shutdown:
|
|
|
|
* Disallow further read/write operations on this socket, close
|
|
|
|
* the fd and disable all callbacks.
|
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
void GSocket_Shutdown(GSocket *socket);
|
|
|
|
|
|
|
|
/* Address handling */
|
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* GSocket_SetLocal:
|
|
|
|
* GSocket_GetLocal:
|
|
|
|
* GSocket_SetPeer:
|
|
|
|
* GSocket_GetPeer:
|
|
|
|
* Set or get the local or peer address for this socket. The 'set'
|
|
|
|
* functions return GSOCK_NOERROR on success, an error code otherwise.
|
|
|
|
* The 'get' functions return a pointer to a GAddress object on success,
|
|
|
|
* or NULL otherwise, in which case they set the error code of the
|
|
|
|
* corresponding GSocket.
|
|
|
|
*
|
|
|
|
* Error codes:
|
|
|
|
* GSOCK_INVSOCK - the socket is not valid.
|
|
|
|
* GSOCK_INVADDR - the address is not valid.
|
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError GSocket_SetLocal(GSocket *socket, GAddress *address);
|
|
|
|
GSocketError GSocket_SetPeer(GSocket *socket, GAddress *address);
|
|
|
|
GAddress *GSocket_GetLocal(GSocket *socket);
|
|
|
|
GAddress *GSocket_GetPeer(GSocket *socket);
|
|
|
|
|
|
|
|
/* Server specific parts */
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_SetServer:
|
2000-01-21 03:10:42 +00:00
|
|
|
* Sets up this socket as a server. The local address must have been
|
|
|
|
* set with GSocket_SetLocal() before GSocket_SetServer() is called.
|
|
|
|
* Returns GSOCK_NOERROR on success, one of the following otherwise:
|
2001-05-02 19:48:15 +00:00
|
|
|
*
|
2000-01-21 03:10:42 +00:00
|
|
|
* Error codes:
|
|
|
|
* GSOCK_INVSOCK - the socket is in use.
|
|
|
|
* GSOCK_INVADDR - the local address has not been set.
|
2001-05-02 19:48:15 +00:00
|
|
|
* GSOCK_IOERR - low-level error.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError GSocket_SetServer(GSocket *socket);
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_WaitConnection:
|
2000-01-21 03:10:42 +00:00
|
|
|
* Waits for an incoming client connection. Returns a pointer to
|
|
|
|
* a GSocket object, or NULL if there was an error, in which case
|
|
|
|
* the last error field will be updated for the calling GSocket.
|
|
|
|
*
|
|
|
|
* Error codes (set in the calling GSocket)
|
|
|
|
* GSOCK_INVSOCK - the socket is not valid or not a server.
|
|
|
|
* GSOCK_TIMEDOUT - timeout, no incoming connections.
|
|
|
|
* GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
|
|
|
|
* GSOCK_MEMERR - couldn't allocate memory.
|
2001-05-02 19:48:15 +00:00
|
|
|
* GSOCK_IOERR - low-level error.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocket *GSocket_WaitConnection(GSocket *socket);
|
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
/* Client specific parts */
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_Connect:
|
2000-01-21 03:10:42 +00:00
|
|
|
* For stream (connection oriented) sockets, GSocket_Connect() tries
|
|
|
|
* to establish a client connection to a server using the peer address
|
|
|
|
* as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
|
|
|
|
* connection has been succesfully established, or one of the error
|
|
|
|
* codes listed below. Note that for nonblocking sockets, a return
|
|
|
|
* value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
|
|
|
|
* request can be completed later; you should use GSocket_Select()
|
|
|
|
* to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
|
|
|
|
* corresponding asynchronous events.
|
|
|
|
*
|
|
|
|
* For datagram (non connection oriented) sockets, GSocket_Connect()
|
|
|
|
* just sets the peer address established with GSocket_SetPeer() as
|
|
|
|
* default destination.
|
|
|
|
*
|
|
|
|
* Error codes:
|
|
|
|
* GSOCK_INVSOCK - the socket is in use or not valid.
|
|
|
|
* GSOCK_INVADDR - the peer address has not been established.
|
|
|
|
* GSOCK_TIMEDOUT - timeout, the connection failed.
|
|
|
|
* GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
|
|
|
|
* GSOCK_MEMERR - couldn't allocate memory.
|
2001-05-02 19:48:15 +00:00
|
|
|
* GSOCK_IOERR - low-level error.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError GSocket_Connect(GSocket *socket, GSocketStream stream);
|
|
|
|
|
2004-07-25 17:06:01 +00:00
|
|
|
/* GSocket_SetReusable:
|
|
|
|
* Simply sets the m_resuable flag on the socket. GSocket_SetServer will
|
|
|
|
* make the appropriate setsockopt() call.
|
|
|
|
* Implemented as a GSocket function because clients (ie, wxSocketServer)
|
|
|
|
* don't have access to the GSocket struct information.
|
|
|
|
* Returns TRUE if the flag was set correctly, FALSE if an error occured
|
|
|
|
* (ie, if the parameter was NULL)
|
|
|
|
*/
|
|
|
|
int GSocket_SetReusable(GSocket *socket);
|
2000-01-21 03:10:42 +00:00
|
|
|
|
|
|
|
/* Datagram sockets */
|
|
|
|
|
|
|
|
/* GSocket_SetNonOriented:
|
|
|
|
* Sets up this socket as a non-connection oriented (datagram) socket.
|
|
|
|
* Before using this function, the local address must have been set
|
|
|
|
* with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
|
|
|
|
* on success, or one of the following otherwise.
|
|
|
|
*
|
|
|
|
* Error codes:
|
|
|
|
* GSOCK_INVSOCK - the socket is in use.
|
|
|
|
* GSOCK_INVADDR - the local address has not been set.
|
2001-05-02 19:48:15 +00:00
|
|
|
* GSOCK_IOERR - low-level error.
|
2000-01-21 03:10:42 +00:00
|
|
|
*/
|
|
|
|
GSocketError GSocket_SetNonOriented(GSocket *socket);
|
|
|
|
|
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
/* Generic IO */
|
|
|
|
|
|
|
|
/* Like recv(), send(), ... */
|
1999-09-11 20:29:14 +00:00
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* For datagram sockets, the incoming / outgoing addresses
|
|
|
|
* are stored as / read from the 'peer' address field.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
int GSocket_Read(GSocket *socket, char *buffer, int size);
|
|
|
|
int GSocket_Write(GSocket *socket, const char *buffer,
|
1999-07-23 21:03:02 +00:00
|
|
|
int size);
|
1999-09-11 20:29:14 +00:00
|
|
|
|
|
|
|
/* GSocket_Select:
|
|
|
|
* Polls the socket to determine its status. This function will
|
|
|
|
* check for the events specified in the 'flags' parameter, and
|
|
|
|
* it will return a mask indicating which operations can be
|
|
|
|
* performed. This function won't block, regardless of the
|
2000-01-21 03:10:42 +00:00
|
|
|
* mode (blocking | nonblocking) of the socket.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
|
|
|
GSocketEventFlags GSocket_Select(GSocket *socket, GSocketEventFlags flags);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
2004-07-25 11:16:31 +00:00
|
|
|
GSocketError GSocket_GetSockOpt(GSocket *socket, int level, int optname,
|
|
|
|
void *optval, int *optlen);
|
|
|
|
|
|
|
|
GSocketError GSocket_SetSockOpt(GSocket *socket, int level, int optname,
|
|
|
|
const void *optval, int optlen);
|
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* Attributes */
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_SetNonBlocking:
|
2000-01-21 03:10:42 +00:00
|
|
|
* Sets the socket to non-blocking mode. All IO calls will return
|
|
|
|
* immediately.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
2000-03-16 21:57:20 +00:00
|
|
|
void GSocket_SetNonBlocking(GSocket *socket, int non_block);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* GSocket_SetTimeout:
|
|
|
|
* Sets the timeout for blocking calls. Time is expressed in
|
|
|
|
* milliseconds.
|
|
|
|
*/
|
|
|
|
void GSocket_SetTimeout(GSocket *socket, unsigned long millisec);
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_GetError:
|
2000-01-21 03:10:42 +00:00
|
|
|
* Returns the last error occured for this socket. Note that successful
|
|
|
|
* operations do not clear this back to GSOCK_NOERROR, so use it only
|
|
|
|
* after an error.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
2003-07-27 22:41:06 +00:00
|
|
|
GSocketError WXDLLIMPEXP_NET GSocket_GetError(GSocket *socket);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
|
|
|
/* Callbacks */
|
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
/* GSOCK_INPUT:
|
|
|
|
* There is data to be read in the input buffer. If, after a read
|
|
|
|
* operation, there is still data available, the callback function will
|
|
|
|
* be called again.
|
|
|
|
* GSOCK_OUTPUT:
|
2001-05-02 19:48:15 +00:00
|
|
|
* The socket is available for writing. That is, the next write call
|
2000-01-21 03:10:42 +00:00
|
|
|
* won't block. This event is generated only once, when the connection is
|
|
|
|
* first established, and then only if a call failed with GSOCK_WOULDBLOCK,
|
|
|
|
* when the output buffer empties again. This means that the app should
|
|
|
|
* assume that it can write since the first OUTPUT event, and no more
|
|
|
|
* OUTPUT events will be generated unless an error occurs.
|
|
|
|
* GSOCK_CONNECTION:
|
|
|
|
* Connection succesfully established, for client sockets, or incoming
|
|
|
|
* client connection, for server sockets. Wait for this event (also watch
|
|
|
|
* out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
|
|
|
|
* GSOCK_LOST:
|
|
|
|
* The connection is lost (or a connection request failed); this could
|
|
|
|
* be due to a failure, or due to the peer closing it gracefully.
|
1999-09-11 20:29:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* GSocket_SetCallback:
|
|
|
|
* Enables the callbacks specified by 'flags'. Note that 'flags'
|
|
|
|
* may be a combination of flags OR'ed toghether, so the same
|
|
|
|
* callback function can be made to accept different events.
|
|
|
|
* The callback function must have the following prototype:
|
|
|
|
*
|
|
|
|
* void function(GSocket *socket, GSocketEvent event, char *cdata)
|
|
|
|
*/
|
|
|
|
void GSocket_SetCallback(GSocket *socket, GSocketEventFlags flags,
|
1999-07-30 17:54:18 +00:00
|
|
|
GSocketCallback fallback, char *cdata);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* GSocket_UnsetCallback:
|
|
|
|
* Disables all callbacks specified by 'flags', which may be a
|
|
|
|
* combination of flags OR'ed toghether.
|
|
|
|
*/
|
|
|
|
void GSocket_UnsetCallback(GSocket *socket, GSocketEventFlags flags);
|
1999-07-22 17:51:54 +00:00
|
|
|
|
2004-03-09 22:48:53 +00:00
|
|
|
#endif /* ndef wxUSE_GSOCKET_CPLUSPLUS */
|
2004-01-18 07:46:18 +00:00
|
|
|
|
2000-01-21 03:10:42 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
/* GAddress */
|
|
|
|
|
2000-03-14 09:32:27 +00:00
|
|
|
GAddress *GAddress_new(void);
|
1999-07-22 17:51:54 +00:00
|
|
|
GAddress *GAddress_copy(GAddress *address);
|
|
|
|
void GAddress_destroy(GAddress *address);
|
|
|
|
|
|
|
|
void GAddress_SetFamily(GAddress *address, GAddressType type);
|
|
|
|
GAddressType GAddress_GetFamily(GAddress *address);
|
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
/* The use of any of the next functions will set the address family to
|
|
|
|
* the specific one. For example if you use GAddress_INET_SetHostName,
|
|
|
|
* address family will be implicitly set to AF_INET.
|
|
|
|
*/
|
1999-07-22 17:51:54 +00:00
|
|
|
|
|
|
|
GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname);
|
2000-01-21 03:10:42 +00:00
|
|
|
GSocketError GAddress_INET_SetAnyAddress(GAddress *address);
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError GAddress_INET_SetHostAddress(GAddress *address,
|
|
|
|
unsigned long hostaddr);
|
1999-07-24 09:05:25 +00:00
|
|
|
GSocketError GAddress_INET_SetPortName(GAddress *address, const char *port,
|
|
|
|
const char *protocol);
|
1999-07-22 17:51:54 +00:00
|
|
|
GSocketError GAddress_INET_SetPort(GAddress *address, unsigned short port);
|
|
|
|
|
|
|
|
GSocketError GAddress_INET_GetHostName(GAddress *address, char *hostname,
|
|
|
|
size_t sbuf);
|
|
|
|
unsigned long GAddress_INET_GetHostAddress(GAddress *address);
|
|
|
|
unsigned short GAddress_INET_GetPort(GAddress *address);
|
|
|
|
|
|
|
|
/* TODO: Define specific parts (INET6, UNIX) */
|
|
|
|
|
|
|
|
GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path);
|
|
|
|
GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2002-05-09 22:34:44 +00:00
|
|
|
}
|
1999-08-06 10:10:10 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2004-01-18 07:46:18 +00:00
|
|
|
#ifdef wxUSE_GSOCKET_CPLUSPLUS
|
2004-08-03 03:33:36 +00:00
|
|
|
# ifdef __WINDOWS__
|
|
|
|
# include "wx/msw/gsockmsw.h"
|
|
|
|
# else
|
|
|
|
# include "wx/unix/gsockunx.h"
|
|
|
|
# endif
|
2004-03-09 22:48:53 +00:00
|
|
|
#endif
|
1999-08-06 10:10:10 +00:00
|
|
|
|
1999-09-15 02:21:15 +00:00
|
|
|
#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1999-09-11 20:29:14 +00:00
|
|
|
#endif /* __GSOCKET_H */
|