summaryrefslogtreecommitdiff
path: root/src/i_engine.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-16 18:30:38 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-16 18:30:38 +0100
commitb9caa319e279cd8cd367e0a64308b9e80c4ead3d (patch)
tree751d1eb31b0e41bf82f51ad3be69e13a2af70472 /src/i_engine.hpp
parent2ddce205350f11dacd8d8550f7d4e6e088c7fbcd (diff)
Multi-hop REQ/REP, part XI., finalise the XREQ/XREP functionality
Diffstat (limited to 'src/i_engine.hpp')
-rw-r--r--src/i_engine.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/i_engine.hpp b/src/i_engine.hpp
index d64027d..81b56df 100644
--- a/src/i_engine.hpp
+++ b/src/i_engine.hpp
@@ -41,10 +41,11 @@ namespace zmq
// are messages to send available.
virtual void revive () = 0;
- // Start tracing the message route. Engine should add the identity
- // supplied to all inbound messages and trim identity from all the
- // outbound messages.
- virtual void traceroute (const blob_t &identity_) = 0;
+ // Engine should add the prefix supplied to all inbound messages.
+ virtual void add_prefix (const blob_t &identity_) = 0;
+
+ // Engine should trim prefix from all the outbound messages.
+ virtual void trim_prefix () = 0;
};
}