Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __CXUTILS_TCP_LISTEN_SOCKET_H
00043 #define __CXUTILS_TCP_LISTEN_SOCKET_H
00044
00045 #include "socket.h"
00046
00047 namespace CxUtils
00048 {
00049 class TcpServer;
00050
00058 class CX_UTILS_DLL TcpListenSocket
00059 {
00060 public:
00061 TcpListenSocket();
00062 virtual ~TcpListenSocket();
00063 int InitializeSocket(const unsigned short port,
00064 const unsigned int queuesize = 100,
00065 const unsigned int stimeout = 0,
00066 const unsigned int rtimeout = 0,
00067 const int nonblocking = 0);
00068 void Shutdown();
00069 int AwaitConnection(TcpServer& socket) const;
00070 bool SetNetworkInterface(const int num);
00071 bool SetNetworkInterface(const IP4Address& ipAddress);
00072 inline bool IsValid() const { return mGoodSocket; }
00073 TcpServer* AwaitConnection() const;
00074 private:
00075 #ifdef WIN32
00076 SOCKET mSocket;
00077 static unsigned int mWinsockInitCount;
00078 #else
00079 int mSocket;
00080 #endif
00081 int mNetworkInterface;
00082 int mPort;
00083 long mComputer;
00084 struct hostent* mpHP;
00085 int mServiceLength;
00086 bool mGoodSocket;
00087 sockaddr_in mService;
00088 };
00089 }
00090
00091 #endif
00092