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_engine.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/zmq_engine.hpp') diff --git a/src/zmq_engine.hpp b/src/zmq_engine.hpp index d26e304..ddd0931 100644 --- a/src/zmq_engine.hpp +++ b/src/zmq_engine.hpp @@ -22,6 +22,8 @@ #include +#include + #include "i_engine.hpp" #include "io_object.hpp" #include "tcp_socket.hpp" @@ -37,7 +39,8 @@ namespace zmq public: zmq_engine_t (class io_thread_t *parent_, fd_t fd_, - const options_t &options_, bool reconnect_, const char *address_); + const options_t &options_, bool reconnect_, + const char *protocol_, const char *address_); ~zmq_engine_t (); // i_engine interface implementation. @@ -70,6 +73,7 @@ namespace zmq options_t options; bool reconnect; + std::string protocol; std::string address; zmq_engine_t (const zmq_engine_t&); -- cgit v1.2.3