summaryrefslogtreecommitdiff
path: root/src/i_endpoint.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@fastmq.commkdir>2009-08-28 16:51:46 +0200
committerMartin Sustrik <sustrik@fastmq.commkdir>2009-08-28 16:51:46 +0200
commitcb09c6951e2c4405318b422a1f9213af3e4b6b8a (patch)
treefb5d4dfd6a71745e885b2501f19cfbbb38c6f441 /src/i_endpoint.hpp
parent2dd501651592baa7f9e49f52e1321ae2b9b4e126 (diff)
pipe deallocation added
Diffstat (limited to 'src/i_endpoint.hpp')
-rw-r--r--src/i_endpoint.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i_endpoint.hpp b/src/i_endpoint.hpp
index bb7409e..14a479e 100644
--- a/src/i_endpoint.hpp
+++ b/src/i_endpoint.hpp
@@ -26,6 +26,8 @@ namespace zmq
struct i_endpoint
{
virtual void revive (class reader_t *pipe_) = 0;
+ virtual void detach_inpipe (class reader_t *pipe_) = 0;
+ virtual void detach_outpipe (class writer_t *pipe_) = 0;
};
}