summaryrefslogtreecommitdiff
path: root/src/zmq_connecter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/zmq_connecter.hpp')
-rw-r--r--src/zmq_connecter.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zmq_connecter.hpp b/src/zmq_connecter.hpp
index acd3352..e5b4a70 100644
--- a/src/zmq_connecter.hpp
+++ b/src/zmq_connecter.hpp
@@ -36,7 +36,7 @@ namespace zmq
public:
zmq_connecter_t (class io_thread_t *parent_, socket_base_t *owner_,
- const options_t &options_, const char *session_name_, bool wait_);
+ const options_t &options_, uint64_t session_ordinal_, bool wait_);
~zmq_connecter_t ();
// Set IP address to connect to.
@@ -69,12 +69,12 @@ namespace zmq
// If true, connecter is waiting a while before trying to connect.
bool wait;
+ // Ordinal of the session to attach to.
+ uint64_t session_ordinal;
+
// Associated socket options.
options_t options;
- // Name of the session associated with the connecter.
- std::string session_name;
-
// Address to connect to.
std::string address;