hxsock.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:13k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsock.h,v 1.2.8.3 2004/07/09 01:46:56 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #if !defined( HXSOCK_H )
  50. #define HXSOCK_H
  51. #if !defined( _WINSOCKAPI_ )
  52. #include <winsock.h>
  53. #endif
  54. #include "hlxclib/assert.h"
  55. // Typedefs used to declare our function pointers, and for casting return value from
  56. // GetProcAddress().
  57. typedef SOCKET (PASCAL FAR *ACCEPT)( SOCKET, struct sockaddr FAR *, int FAR * );
  58. typedef int (PASCAL FAR *BIND)( SOCKET, const struct sockaddr FAR *, int );
  59. typedef int (PASCAL FAR * CLOSESOCKET)( SOCKET );
  60. typedef int (PASCAL FAR * CONNECT)( SOCKET, const struct sockaddr FAR *, int );
  61. typedef int (PASCAL FAR *IOCTLSOCKET)( SOCKET, long, u_long FAR * );
  62. typedef int (PASCAL FAR *GETPEERNAME)( SOCKET, struct sockaddr FAR *, int FAR * );
  63. typedef int (PASCAL FAR *GETSOCKNAME)( SOCKET, struct sockaddr FAR *, int FAR * );
  64. typedef int (PASCAL FAR *GETSOCKOPT)( SOCKET, int, int, char FAR *, int FAR * );
  65. typedef u_long (PASCAL FAR *HTONL)( u_long );
  66. typedef u_short (PASCAL FAR *HTONS)( u_short );
  67. typedef unsigned long (PASCAL FAR *INET_ADDR)( const char FAR * );
  68. typedef char FAR * (PASCAL FAR * INET_NTOA)( struct in_addr );
  69. typedef int (PASCAL FAR *LISTEN)( SOCKET, int );
  70. typedef u_long (PASCAL FAR * NTOHL)( u_long );
  71. typedef u_short (PASCAL FAR * NTOHS)( u_short );
  72. typedef int (PASCAL FAR * RECV)( SOCKET, char FAR *, int, int );
  73. typedef int (PASCAL FAR * RECVFROM)( SOCKET, char FAR *, int, int, struct sockaddr FAR *, int FAR * );
  74. typedef int (PASCAL FAR * SELECT)( int, fd_set FAR *, fd_set FAR *, fd_set FAR *, const struct timeval FAR * );
  75. typedef int (PASCAL FAR * SEND)( SOCKET, const char FAR *, int, int );
  76. typedef int (PASCAL FAR *SENDTO)( SOCKET, const char FAR *, int, int, const struct sockaddr FAR *, int );
  77. typedef int (PASCAL FAR *SETSOCKOPT)( SOCKET, int, int, const char FAR *, int );
  78. typedef int (PASCAL FAR *SHUTDOWN)( SOCKET, int );
  79. typedef SOCKET (PASCAL FAR *HXSOCKET)( int, int, int );
  80. typedef struct hostent FAR * (PASCAL FAR *GETHOSTBYADDR)( const char FAR *, int, int );
  81. typedef struct hostent FAR * (PASCAL FAR *GETHOSTBYNAME)( const char FAR * );
  82. typedef int (PASCAL FAR *GETHOSTNAME)( char FAR *, int );
  83. #ifndef _WINCE
  84. typedef struct servent FAR * (PASCAL FAR *GETSERVBYPORT)( int, const char FAR * );
  85. typedef struct servent FAR * (PASCAL FAR *GETSERVBYNAME)( const char FAR *, const char FAR * );
  86. typedef struct protoent FAR * (PASCAL FAR *GETPROTOBYNUMBER)( int );
  87. typedef struct protoent FAR * (PASCAL FAR *GETPROTOBYNAME)( const char FAR * );
  88. #endif /* _WINCE */
  89. typedef int (PASCAL FAR *WSASTARTUP)( WORD, LPWSADATA );
  90. typedef int (PASCAL FAR *WSACLEANUP)( void );
  91. typedef void (PASCAL FAR *WSASETLASTERROR)( int );
  92. typedef int (PASCAL FAR *WSAGETLASTERROR)( void );
  93. #ifndef _WINCE
  94. typedef BOOL (PASCAL FAR *WSAISBLOCKING)( void );
  95. typedef int (PASCAL FAR *WSAUNHOOKBLOCKINGHOOK)( void );
  96. typedef FARPROC (PASCAL FAR *WSASETBLOCKINGHOOK)( FARPROC );
  97. typedef int (PASCAL FAR *WSACANCELBLOCKINGCALL)( void );
  98. typedef HANDLE (PASCAL FAR *WSAASYNCGETSERVBYNAME)( HWND, u_int, const char FAR *, const char FAR *, char FAR *, int );
  99. typedef HANDLE (PASCAL FAR *WSAASYNCGETSERVBYPORT)( HWND, u_int, int, const char FAR *, char FAR *, int );
  100. typedef HANDLE (PASCAL FAR *WSAASYNCGETPROTOBYNAME)( HWND, u_int, const char FAR *, char FAR *, int );
  101. typedef HANDLE (PASCAL FAR *WSAASYNCGETPROTOBYNUMBER)( HWND, u_int, int, char FAR *, int );
  102. typedef HANDLE (PASCAL FAR *WSAASYNCGETHOSTBYNAME)( HWND, u_int, const char FAR *, char FAR *, int );
  103. typedef HANDLE (PASCAL FAR *WSAASYNCGETHOSTBYADDR)( HWND, u_int, const char FAR *, int, int, const char FAR *, int );
  104. typedef int (PASCAL FAR *WSACANCELASYNCREQUEST)( HANDLE );
  105. typedef int (PASCAL FAR *WSAASYNCSELECT)( SOCKET, HWND, u_int, long );
  106. #endif /* _WINCE */
  107. typedef int (PASCAL FAR *__WSAFDISSET)( SOCKET, fd_set FAR * );
  108. class CHXSock
  109. {                                  
  110. public:
  111. CHXSock();
  112. ~CHXSock();
  113. BOOL InitWinsock();
  114. BOOL WinSockAvail() { return( m_iInited ); }
  115.    /*
  116.     * These are the exported methods for this class, basically it's a wrapper for winsock
  117.     */
  118. // This function branches on whether the socket is TCP or UDP 
  119. // (different code for getting through a Firewall)
  120. int PASCAL FAR HXconnect( SOCKET s, const struct sockaddr FAR *name, int namelen );
  121. // This function branches on whether the socket is TCP or UDP 
  122. // (different code for getting through a Firewall)
  123. int PASCAL FAR HXbind ( SOCKET s, const struct sockaddr FAR *addr, int namelen );
  124. // This function branches on whether the socket is TCP or UDP 
  125. // (different code for getting through a Firewall)
  126. int PASCAL FAR HXlisten( SOCKET s, int backlog );
  127. // This function branches on whether the socket is TCP or UDP 
  128. // (different code for getting through a Firewall)
  129. int PASCAL FAR HXgetsockname( SOCKET s, struct sockaddr FAR *name, int FAR * namelen );
  130. // This function branches on whether the socket is TCP or UDP 
  131. // (different code for getting through a Firewall)
  132. u_int PASCAL FAR HXaccept( SOCKET s, struct sockaddr FAR *addr, int FAR *addrlen );
  133. int PASCAL FAR HXclosesocket( SOCKET s );
  134. int PASCAL FAR HXioctlsocket( SOCKET s, long cmd, u_long FAR *argp );
  135. int PASCAL FAR HXgetpeername( SOCKET s, struct sockaddr FAR *name, int FAR * namelen );
  136. int PASCAL FAR HXgetsockopt( SOCKET s, int level, int optname, char FAR * optval, int FAR *optlen );
  137. u_long PASCAL FAR HXhtonl( u_long hostlong );
  138. u_short PASCAL FAR HXhtons( u_short hostshort );
  139. unsigned long PASCAL FAR HXinet_addr( const char FAR * cp );
  140. char FAR * PASCAL FAR HXinet_ntoa( struct in_addr in );
  141. u_long PASCAL FAR HXntohl( u_long netlong );
  142. u_short PASCAL FAR HXntohs( u_short netshort );
  143. int PASCAL FAR HXrecv( SOCKET s, char FAR * buf, int len, int flags );
  144. int PASCAL FAR HXrecvfrom( SOCKET s, char FAR * buf, int len, int flags, struct sockaddr FAR *from, int FAR * fromlen );
  145. int PASCAL FAR HXselect( int nfds, fd_set FAR *readfds, fd_set FAR *writefds, fd_set FAR *exceptfds, const struct timeval FAR *timeout );
  146. int PASCAL FAR HXsend( SOCKET s, const char FAR * buf, int len, int flags );
  147. int PASCAL FAR HXsendto( SOCKET s, const char FAR * buf, int len, int flags, const struct sockaddr FAR *to, int tolen );
  148. int PASCAL FAR HXsetsockopt( SOCKET s, int level, int optname, const char FAR * optval, int optlen );
  149. int PASCAL FAR HXshutdown( SOCKET s, int how );
  150. SOCKET PASCAL FAR HXsocket( int af, int type, int protocol );
  151. /* Database function prototypes */
  152. struct hostent FAR * PASCAL FAR HXgethostbyaddr( const char FAR * addr, int len, int type );
  153. struct hostent FAR * PASCAL FAR HXgethostbyname( const char FAR * name );
  154. int PASCAL FAR  HXgethostname( char FAR * name, int namelen );
  155. #ifndef _WINCE
  156. struct servent FAR * PASCAL FAR HXgetservbyport( int port, const char FAR * proto );
  157. struct servent FAR * PASCAL FAR HXgetservbyname( const char FAR * name,
  158.  const char FAR * proto );
  159. struct protoent FAR * PASCAL FAR HXgetprotobynumber( int proto );
  160. struct protoent FAR * PASCAL FAR HXgetprotobyname( const char FAR * name );
  161. #endif /* _WINCE */
  162. /* Microsoft Windows Extension function prototypes */
  163. int PASCAL FAR HXWSAStartup( WORD wVersionRequired, LPWSADATA lpWSAData );
  164. int PASCAL FAR HXWSACleanup( void );
  165. void PASCAL FAR HXWSASetLastError( int iError );
  166. int PASCAL FAR HXWSAGetLastError( void );
  167. #ifndef _WINCE
  168. BOOL PASCAL FAR HXWSAIsBlocking( void );
  169. int PASCAL FAR HXWSAUnhookBlockingHook( void );
  170. FARPROC PASCAL FAR HXWSASetBlockingHook( FARPROC lpBlockFunc );
  171. int PASCAL FAR HXWSACancelBlockingCall( void );
  172. HANDLE PASCAL FAR HXWSAAsyncGetServByName( HWND hWnd, u_int wMsg, const char FAR * name, const char FAR * proto, char FAR * buf, int buflen );
  173. HANDLE PASCAL FAR HXWSAAsyncGetServByPort( HWND hWnd, u_int wMsg, int port, const char FAR * proto, char FAR * buf, int buflen );
  174. HANDLE PASCAL FAR HXWSAAsyncGetProtoByName( HWND hWnd, u_int wMsg, const char FAR * name, char FAR * buf, int buflen );
  175. HANDLE PASCAL FAR HXWSAAsyncGetProtoByNumber( HWND hWnd, u_int wMsg, int number, char FAR * buf, int buflen );
  176. HANDLE PASCAL FAR HXWSAAsyncGetHostByName( HWND hWnd, u_int wMsg, const char FAR * name, char FAR * buf, int buflen );
  177. HANDLE PASCAL FAR HXWSAAsyncGetHostByAddr( HWND hWnd, u_int wMsg, const char FAR * addr, int len, int type, const char FAR * buf, int buflen );
  178. int PASCAL FAR HXWSACancelAsyncRequest( HANDLE hAsyncTaskHandle );
  179. int PASCAL FAR HXWSAAsyncSelect( SOCKET s, HWND hWnd, u_int wMsg, long lEvent);
  180. #endif /* _WINCE */
  181. int PASCAL FAR HX__WSAFDIsSet( SOCKET s, fd_set FAR *fdSet );
  182. UINT8 HXGetVersion(void);
  183. protected:
  184. int m_iInited;
  185. HINSTANCE m_hLib;
  186. UINT8 m_nVersion;
  187. void SetInited( void );
  188. // Internal function pointers
  189. ACCEPT _hxaccept;
  190. BIND _hxbind;
  191. CLOSESOCKET _hxclosesocket;
  192. CONNECT _hxconnect;
  193. IOCTLSOCKET _hxioctlsocket;
  194. GETPEERNAME _hxgetpeername;
  195. GETSOCKNAME _hxgetsockname;
  196. GETSOCKOPT _hxgetsockopt;
  197. HTONL _hxhtonl;
  198. HTONS _hxhtons;
  199. INET_ADDR _hxinet_addr;
  200. INET_NTOA _hxinet_ntoa;
  201. LISTEN _hxlisten;
  202. NTOHL _hxntohl;
  203. NTOHS _hxntohs;
  204. RECV _hxrecv;
  205. RECVFROM _hxrecvfrom;
  206. SELECT _hxselect;
  207. SEND _hxsend;
  208. SENDTO _hxsendto;
  209. SETSOCKOPT _hxsetsockopt;
  210. SHUTDOWN _hxshutdown;
  211. HXSOCKET _hxsocket;
  212. /* Database function prototypes */
  213. GETHOSTBYADDR _hxgethostbyaddr;
  214. GETHOSTBYNAME _hxgethostbyname;
  215. GETHOSTNAME _hxgethostname;
  216. #ifndef _WINCE
  217. GETSERVBYPORT _hxgetservbyport;
  218. GETSERVBYNAME _hxgetservbyname;
  219. GETPROTOBYNUMBER _hxgetprotobynumber;
  220. GETPROTOBYNAME _hxgetprotobyname;
  221. #endif /* _WINCE */
  222. /* Microsoft Windows Extension function prototypes */
  223. WSASTARTUP _hxWSAStartup;
  224. WSACLEANUP _hxWSACleanup;
  225. WSASETLASTERROR _hxWSASetLastError;
  226. WSAGETLASTERROR _hxWSAGetLastError;
  227. #ifndef _WINCE
  228. WSAISBLOCKING _hxWSAIsBlocking;
  229. WSAUNHOOKBLOCKINGHOOK _hxWSAUnhookBlockingHook;
  230. WSASETBLOCKINGHOOK _hxWSASetBlockingHook;
  231. WSACANCELBLOCKINGCALL _hxWSACancelBlockingCall;
  232. WSAASYNCGETSERVBYNAME _hxWSAAsyncGetServByName;
  233. WSAASYNCGETSERVBYPORT _hxWSAAsyncGetServByPort;
  234. WSAASYNCGETPROTOBYNAME _hxWSAAsyncGetProtoByName;
  235. WSAASYNCGETPROTOBYNUMBER _hxWSAAsyncGetProtoByNumber;
  236. WSAASYNCGETHOSTBYNAME _hxWSAAsyncGetHostByName;
  237. WSAASYNCGETHOSTBYADDR _hxWSAAsyncGetHostByAddr;
  238. WSACANCELASYNCREQUEST _hxWSACancelAsyncRequest;
  239. WSAASYNCSELECT _hxWSAAsyncSelect;
  240. #endif /* _WINCE */
  241. __WSAFDISSET _hxWSAFDIsSet;
  242. BOOL LoadWinsock( void );
  243. void UnloadWinsock(BOOL bDestuction = TRUE);
  244. };
  245. // This is the one CHXSock object that we create
  246. extern CHXSock* sockObj;
  247. #define _INLINE_CHXSOCK_
  248. //#include "sock.inl"
  249. //#include "sock.h"
  250. #define __WSAFDIsSet( arg1, arg2 ) sockObj->HX__WSAFDIsSet( arg1, arg2 )
  251. #endif