summaryrefslogtreecommitdiff
path: root/src/session_base.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-10-31 16:37:20 +0100
committerMartin Sustrik <sustrik@250bpm.com>2011-10-31 16:37:20 +0100
commit626099aa2a292178872843c55cc5226e6850f2ed (patch)
tree7a7f16ad190f9cf85d3e48c7da8b4f89a217b02c /src/session_base.cpp
parentac7717b7b35f441fc3aeeb1528e63f147c00913a (diff)
VTCP transport removed
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/session_base.cpp')
-rw-r--r--src/session_base.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/session_base.cpp b/src/session_base.cpp
index 5929640..d1d31c9 100644
--- a/src/session_base.cpp
+++ b/src/session_base.cpp
@@ -27,7 +27,6 @@
#include "likely.hpp"
#include "tcp_connecter.hpp"
#include "ipc_connecter.hpp"
-#include "vtcp_connecter.hpp"
#include "pgm_sender.hpp"
#include "pgm_receiver.hpp"
@@ -394,18 +393,6 @@ void zmq::session_base_t::start_connecting (bool wait_)
}
#endif
-#if defined ZMQ_HAVE_VTCP
- if (protocol == "vtcp") {
-
- vtcp_connecter_t *connecter = new (std::nothrow) vtcp_connecter_t (
- io_thread, this, options, address.c_str (),
- wait_);
- alloc_assert (connecter);
- launch_child (connecter);
- return;
- }
-#endif
-
#if defined ZMQ_HAVE_OPENPGM
// Both PGM and EPGM transports are using the same infrastructure.