CHG: removed the sourcetype out of the basic message
This commit is contained in:
@@ -13,15 +13,14 @@ namespace WHISPER {
|
||||
class localClient
|
||||
{
|
||||
public:
|
||||
localClient(std::uint32_t port,std::string addr,std::uint32_t parentid,std::uint32_t id, std::shared_ptr<zmq::socket_t> clientSocket);
|
||||
localClient(std::uint32_t port,std::string addr,std::string id, std::shared_ptr<zmq::socket_t> clientSocket);
|
||||
~localClient();
|
||||
|
||||
|
||||
|
||||
std::uint32_t getPort();
|
||||
std::string getAddr();
|
||||
std::uint32_t getParentid();
|
||||
std::uint32_t getID();
|
||||
std::string getID();
|
||||
|
||||
void addClientSocket(std::shared_ptr<zmq::socket_t> socket);
|
||||
std::shared_ptr<zmq::socket_t> getClientSocket();
|
||||
@@ -35,8 +34,7 @@ namespace WHISPER {
|
||||
|
||||
const std::uint32_t port_;
|
||||
const std::string addr_;
|
||||
const std::uint32_t parentid_;
|
||||
const std::uint32_t id_;
|
||||
const std::string id_;
|
||||
std::shared_ptr<zmq::socket_t> clientSocket_;
|
||||
std::time_t lastResponse_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user