Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/framework/protocol.h')
-rw-r--r--agent/tcf/framework/protocol.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/agent/tcf/framework/protocol.h b/agent/tcf/framework/protocol.h
index c7d886fd..aa2ca7d7 100644
--- a/agent/tcf/framework/protocol.h
+++ b/agent/tcf/framework/protocol.h
@@ -112,7 +112,11 @@ extern int protocol_cancel_command(ReplyHandlerInfo * rh);
/*
* Send redirect command.
*/
-extern ReplyHandlerInfo * send_redirect_command(Channel * c, const char * peerId, ReplyHandlerCB handler, void * client_data);
+extern ReplyHandlerInfo * send_redirect_command_by_id(Channel * c, const char * peerId, ReplyHandlerCB handler, void * client_data);
+extern ReplyHandlerInfo * send_redirect_command_by_props(Channel * c, const PeerServer * ps, ReplyHandlerCB handler, void * client_data);
+
+/* Deprecated, use send_redirect_by_id_command */
+#define send_redirect_command send_redirect_command_by_id
/*
* Create protocol instance

Back to the top