summaryrefslogtreecommitdiffstats
path: root/src/InputReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/InputReader.h')
-rw-r--r--src/InputReader.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/InputReader.h b/src/InputReader.h
index ae36899..de8fb78 100644
--- a/src/InputReader.h
+++ b/src/InputReader.h
@@ -143,15 +143,14 @@ class InputZeroMQWorker
{
public:
InputZeroMQWorker() :
- zmqcontext(1), subscriber(zmqcontext, ZMQ_SUB) {}
+ zmqcontext(1) {}
void Start(struct InputZeroMQThreadData* workerdata);
void Stop();
private:
void RecvProcess(struct InputZeroMQThreadData* workerdata);
bool running;
- zmq::context_t zmqcontext;
- zmq::socket_t subscriber;
+ zmq::context_t zmqcontext; // is thread-safe
boost::thread recv_thread;
};