summaryrefslogtreecommitdiff
path: root/src/p2p.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-01-30 13:40:50 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-01-30 13:40:50 +0100
commit70ea8e9d4b88a1ecb1c076eccc2e9bd872c2230c (patch)
treeffbb30dd35d30378bbc24825a5ffa89785a4e2b1 /src/p2p.hpp
parenteb47c1b064ec2f433d3889b7fd4a297a965166bb (diff)
ZMQII-48: Implement P2P socket type
Diffstat (limited to 'src/p2p.hpp')
-rw-r--r--src/p2p.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/p2p.hpp b/src/p2p.hpp
index 5bbe111..2ff1047 100644
--- a/src/p2p.hpp
+++ b/src/p2p.hpp
@@ -47,6 +47,11 @@ namespace zmq
private:
+ class reader_t *inpipe;
+ class writer_t *outpipe;
+
+ bool alive;
+
p2p_t (const p2p_t&);
void operator = (const p2p_t&);
};