0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-31 01:43:02 +08:00

options.type correctly set for PUB/SUB/XPUB/XSUB

Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
Martin Sustrik 2010-12-06 22:36:10 +01:00
parent 8a6ff4ccd2
commit ec61751e17
4 changed files with 4 additions and 2 deletions

View File

@ -22,6 +22,7 @@
zmq::pub_t::pub_t (class ctx_t *parent_, uint32_t tid_) :
xpub_t (parent_, tid_)
{
options.type = ZMQ_PUB;
}
zmq::pub_t::~pub_t ()

View File

@ -24,6 +24,7 @@
zmq::sub_t::sub_t (class ctx_t *parent_, uint32_t tid_) :
xsub_t (parent_, tid_)
{
options.type = ZMQ_SUB;
}
zmq::sub_t::~sub_t ()

View File

@ -29,7 +29,7 @@ zmq::xpub_t::xpub_t (class ctx_t *parent_, uint32_t tid_) :
active (0),
terminating (false)
{
options.type = ZMQ_PUB;
options.type = ZMQ_XPUB;
options.requires_in = false;
options.requires_out = true;
}

View File

@ -30,7 +30,7 @@ zmq::xsub_t::xsub_t (class ctx_t *parent_, uint32_t tid_) :
has_message (false),
more (false)
{
options.type = ZMQ_SUB;
options.type = ZMQ_XSUB;
options.requires_in = true;
options.requires_out = false;
zmq_msg_init (&message);