summaryrefslogtreecommitdiff
path: root/src/session.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-09-21 14:39:59 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-09-21 14:39:59 +0200
commitcb1b6fe32cbf3c7cf5961bb4156f2de743693a3a (patch)
treefad2a866ccb543fd4676c4539c68fb32c52dc3a3 /src/session.hpp
parent7668b246fc3cf4a2a3b3ee9b1283ad8a4b12ac4f (diff)
initial version of req/rep sockets
Diffstat (limited to 'src/session.hpp')
-rw-r--r--src/session.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/session.hpp b/src/session.hpp
index 55aa8ea..64900f2 100644
--- a/src/session.hpp
+++ b/src/session.hpp
@@ -44,11 +44,11 @@ namespace zmq
void detach ();
// i_endpoint interface implementation.
- void attach_inpipe (class reader_t *pipe_);
- void attach_outpipe (class writer_t *pipe_);
- void revive (class reader_t *pipe_);
+ void attach_pipes (class reader_t *inpipe_, class writer_t *outpipe_);
void detach_inpipe (class reader_t *pipe_);
void detach_outpipe (class writer_t *pipe_);
+ void kill (class reader_t *pipe_);
+ void revive (class reader_t *pipe_);
private: