summaryrefslogtreecommitdiff
path: root/src/socket_base.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-07-26 00:43:57 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-07-26 00:43:57 +0200
commit9119b4fd7b292b1a14db916040f8e7cc4731d4b6 (patch)
tree01786d8c6418179fda8826ced4dc6c436f7da33e /src/socket_base.cpp
parent43b5b3444c5ea54fa17eab2e03b7e00c022f33b4 (diff)
TCP transport classes simplified
zmq_engine and tcp_socket merged into tcp_engine zmq_connecter and tcp_connecter merged into tcp_connecter zmq_listener and tcp_listener merged into tcp_listener Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/socket_base.cpp')
-rw-r--r--src/socket_base.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/socket_base.cpp b/src/socket_base.cpp
index 2ec3998..b97e3a7 100644
--- a/src/socket_base.cpp
+++ b/src/socket_base.cpp
@@ -34,8 +34,8 @@
#endif
#include "socket_base.hpp"
-#include "zmq_listener.hpp"
-#include "zmq_connecter.hpp"
+#include "tcp_listener.hpp"
+#include "tcp_connecter.hpp"
#include "io_thread.hpp"
#include "session.hpp"
#include "config.hpp"
@@ -348,7 +348,7 @@ int zmq::socket_base_t::bind (const char *addr_)
}
// Create and run the listener.
- zmq_listener_t *listener = new (std::nothrow) zmq_listener_t (
+ tcp_listener_t *listener = new (std::nothrow) tcp_listener_t (
io_thread, this, options);
alloc_assert (listener);
int rc = listener->set_address (protocol.c_str(), address.c_str ());