summaryrefslogtreecommitdiff
path: root/src/socket_base.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@turist.(none)>2011-10-31 15:44:42 +0100
committerMartin Sustrik <sustrik@turist.(none)>2011-10-31 15:44:42 +0100
commitdee8b2360ac0084165401dd61fc485226402124d (patch)
tree82e8339cd227f5d0d26120d6e3255f47ca953f87 /src/socket_base.cpp
parent541b83bc02784c721efa3d9dde8f8a191c3c3b7b (diff)
New style ROUTER socket removed.
Signed-off-by: Martin Sustrik <sustrik@turist.(none)>
Diffstat (limited to 'src/socket_base.cpp')
-rw-r--r--src/socket_base.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp
index a4d89db..0a5f732 100644
--- a/src/socket_base.cpp
+++ b/src/socket_base.cpp
@@ -60,7 +60,6 @@
#include "xrep.hpp"
#include "xpub.hpp"
#include "xsub.hpp"
-#include "router.hpp"
bool zmq::socket_base_t::check_tag ()
{
@@ -106,9 +105,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;
default:
errno = EINVAL;
return NULL;