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_SERVER_SOCKET_H
00043 #define __CXUTILS_TCP_SERVER_SOCKET_H
00044
00045 #include "cxutils/networking/socket.h"
00046 #include "cxutils/networking/tcplistensocket.h"
00047
00048 namespace CxUtils
00049 {
00059 class CX_UTILS_DLL TcpServer : public Socket
00060 {
00061 friend class TcpListenSocket;
00062 public:
00063 TcpServer();
00064 virtual ~TcpServer();
00065 int InitializeSocket(const TcpListenSocket& socket);
00066 inline IP4Address GetClientAddress() const { return mClientAddress; }
00067 private:
00068 virtual int SendFromBuffer(const char* buffer,
00069 const unsigned int length) const;
00070 virtual int RecvToBuffer(char* buffer,
00071 const unsigned int length,
00072 const long int timeOutMilliseconds = 0,
00073 IPAddress* ipAddress = NULL,
00074 unsigned short* port = NULL) const;
00075 IP4Address mClientAddress;
00076 };
00077 }
00078
00079 #endif
00080