ROUTER and DEALER sockets removed

To be replaced by new generic socket type

Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
This commit is contained in:
Martin Sustrik
2011-07-15 08:16:40 +02:00
parent 73630de98a
commit e4f98d1e10
7 changed files with 0 additions and 553 deletions

View File

@@ -59,8 +59,6 @@
#include "xrep.hpp"
#include "xpub.hpp"
#include "xsub.hpp"
#include "router.hpp"
#include "dealer.hpp"
bool zmq::socket_base_t::check_tag ()
{
@@ -106,12 +104,6 @@ zmq::socket_base_t *zmq::socket_base_t::create (int type_, class ctx_t *parent_,
case ZMQ_XSUB:
s = new (std::nothrow) xsub_t (parent_, tid_);
break;
case ZMQ_ROUTER:
s = new (std::nothrow) router_t (parent_, tid_);
break;
case ZMQ_DEALER:
s = new (std::nothrow) dealer_t (parent_, tid_);
break;
default:
errno = EINVAL;
return NULL;