summaryrefslogtreecommitdiff
path: root/src/connect_session.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-07-15 11:24:33 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-07-15 11:24:33 +0200
commitc8e8f2a24cd339c548e06f75a3cef96454671a85 (patch)
treeb8ea021d0755acedca74563cfc74921634071f83 /src/connect_session.hpp
parentba67eff167e94105b0975166a2192060ab125e58 (diff)
ZMQ_IDENTITY socket option removed
This patch simplifies the whole codebase significantly, including dropping depedency on libuuid. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/connect_session.hpp')
-rw-r--r--src/connect_session.hpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/connect_session.hpp b/src/connect_session.hpp
index 3b8a26b..bc25d26 100644
--- a/src/connect_session.hpp
+++ b/src/connect_session.hpp
@@ -44,7 +44,7 @@ namespace zmq
private:
// Handlers for events from session base class.
- bool xattached (const blob_t &peer_identity_);
+ bool xattached ();
bool xdetached ();
// Start the connection process.
@@ -57,13 +57,6 @@ namespace zmq
std::string protocol;
std::string address;
- // If true, the session was already connected to the peer.
- bool connected;
-
- // Identity of the peer. If 'connected' is false, it has no meaning.
- // Otherwise, if it's empty, the peer has transient identity.
- blob_t peer_identity;
-
connect_session_t (const connect_session_t&);
const connect_session_t &operator = (const connect_session_t&);
};