New style ROUTER socket removed.

Signed-off-by: Martin Sustrik <sustrik@turist.(none)>
This commit is contained in:
Martin Sustrik
2011-10-31 15:44:42 +01:00
parent 541b83bc02
commit dee8b2360a
6 changed files with 0 additions and 420 deletions

View File

@@ -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;