otsdaq  v2_05_02_indev
TCPPublishServer.h
1 #ifndef _TCPPublishServer_h_
2 #define _TCPPublishServer_h_
3 
4 #include "otsdaq/NetworkUtilities/TCPServerBase.h"
5 
6 namespace ots
7 {
9 {
10  public:
11  TCPPublishServer(int serverPort, unsigned int maxNumberOfClients = -1);
12  virtual ~TCPPublishServer(void);
13 
14  protected:
15  void acceptConnections() override;
16 };
17 }
18 #endif