#ifndef ROOT_TPServerSocket
#define ROOT_TPServerSocket
#ifndef ROOT_TServerSocket
#include "TServerSocket.h"
#endif
class TPSocket;
class TPServerSocket : public TServerSocket {
private:
Int_t fTcpWindowSize;
TPServerSocket(const TPServerSocket &);
void operator=(const TPServerSocket &);
public:
TPServerSocket(Int_t port, Bool_t reuse = kFALSE,
Int_t backlog = kDefaultBacklog,
Int_t tcpwindowsize = -1);
TPServerSocket(const char *service, Bool_t reuse = kFALSE,
Int_t backlog = kDefaultBacklog,
Int_t tcpwindowsize = -1);
virtual ~TPServerSocket() { }
virtual TSocket *Accept(UChar_t Opt = kSrvNoAuth);
ClassDef(TPServerSocket,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.