mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 12:18:04 +01:00
reconnection mechanism added to tcp transport
This commit is contained in:
@@ -37,7 +37,7 @@ namespace zmq
|
||||
public:
|
||||
|
||||
zmq_engine_t (class io_thread_t *parent_, fd_t fd_,
|
||||
const options_t &options_);
|
||||
const options_t &options_, bool reconnect_, const char *address_);
|
||||
~zmq_engine_t ();
|
||||
|
||||
// i_engine interface implementation.
|
||||
@@ -69,6 +69,9 @@ namespace zmq
|
||||
|
||||
options_t options;
|
||||
|
||||
bool reconnect;
|
||||
std::string address;
|
||||
|
||||
zmq_engine_t (const zmq_engine_t&);
|
||||
void operator = (const zmq_engine_t&);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user