]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/gsockunx.h
1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
4 * Purpose: GSocket Unix header
6 * -------------------------------------------------------------------------
15 #include "wx/gsocket.h"
19 #endif /* __cplusplus */
22 /* Definition of GSocket */
25 GAddress
*m_local
, *m_peer
;
28 bool m_non_blocking
, m_server
, m_stream
, m_oriented
;
29 unsigned long m_timeout
;
32 GSocketCallback m_cbacks
[GSOCK_MAX_EVENT
];
33 char *m_data
[GSOCK_MAX_EVENT
];
35 /* IO calls associated */
36 bool m_iocalls
[GSOCK_MAX_EVENT
];
38 char *m_gui_dependent
;
41 /* Definition of GAddress */
43 struct sockaddr
*m_addr
;
46 GAddressType m_family
;
52 void _GSocket_Enable(GSocket
*socket
, GSocketEvent event
);
53 void _GSocket_Disable(GSocket
*socket
, GSocketEvent event
);
54 int _GSocket_Recv_Stream(GSocket
*socket
, char *buffer
, int size
);
55 int _GSocket_Recv_Dgram(GSocket
*socket
, char *buffer
, int size
);
56 int _GSocket_Send_Stream(GSocket
*socket
, const char *buffer
, int size
);
57 int _GSocket_Send_Dgram(GSocket
*socket
, const char *buffer
, int size
);
58 void _GSocket_Install_Callback(GSocket
*socket
, GSocketEvent count
);
59 void _GSocket_Uninstall_Callback(GSocket
*socket
, GSocketEvent count
);
60 void _GSocket_Detected_Read(GSocket
*socket
);
61 void _GSocket_Detected_Write(GSocket
*socket
);
62 void _GSocket_GUI_Init(GSocket
*socket
);
63 void _GSocket_GUI_Destroy(GSocket
*socket
);
65 /* Translaters returns false when memory is exhausted */
66 GSocketError
_GAddress_translate_from(GAddress
*address
,
67 struct sockaddr
*addr
, int len
);
68 GSocketError
_GAddress_translate_to(GAddress
*address
,
69 struct sockaddr
**addr
, int *len
);
71 /* Initialisers returns FALSE when an error happened in the initialisation */
73 /* Internet address family */
74 GSocketError
_GAddress_Init_INET(GAddress
*address
);
75 /* Local address family */
76 GSocketError
_GAddress_Init_UNIX(GAddress
*address
);
80 #endif /* __cplusplus */