From 2bb57ac57ace37203c505ff17147210feca34d73 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Fri, 15 Jan 2010 14:11:39 +0100 Subject: ZMQII-39: Implement IPC transport --- src/zmq_init.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/zmq_init.cpp') diff --git a/src/zmq_init.cpp b/src/zmq_init.cpp index c602e1d..fe6aea2 100644 --- a/src/zmq_init.cpp +++ b/src/zmq_init.cpp @@ -25,7 +25,7 @@ zmq::zmq_init_t::zmq_init_t (io_thread_t *parent_, socket_base_t *owner_, fd_t fd_, const options_t &options_, bool reconnect_, - const char *address_, uint64_t session_ordinal_) : + const char *protocol_, const char *address_, uint64_t session_ordinal_) : owned_t (parent_, owner_), sent (false), received (false), @@ -34,7 +34,7 @@ zmq::zmq_init_t::zmq_init_t (io_thread_t *parent_, socket_base_t *owner_, { // Create the engine object for this connection. engine = new (std::nothrow) zmq_engine_t (parent_, fd_, options, - reconnect_, address_); + reconnect_, protocol_, address_); zmq_assert (engine); } -- cgit v1.2.3