Module: sip-router
Branch: master
Commit: 308b61934998c15630a801f8cb98e32a4fe8a830
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=308b619…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Sun Oct 3 23:02:54 2010 +0200
tmx: fixed t_reply_callid() name in example
---
modules_k/tmx/README | 6 +++---
modules_k/tmx/doc/tmx_admin.xml | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules_k/tmx/README b/modules_k/tmx/README
index 658ea42..6b3f050 100644
--- a/modules_k/tmx/README
+++ b/modules_k/tmx/README
@@ -56,7 +56,7 @@ Daniel-Constantin Mierla
1.1. t_cancel_branches usage
1.2. t_cancel_callid usage
- 1.3. t_cancel_reply usage
+ 1.3. t_reply_callid usage
Chapter 1. Admin Guide
@@ -175,9 +175,9 @@ if (t_cancel_callid("123qaz", "5",
"22")) {
This function can be used in ANY_ROUTE.
- Example 1.3. t_cancel_reply usage
+ Example 1.3. t_reply_callid usage
...
-if (t_cancel_reply("123qaz", "5", "458", "Replied
remotely")) {
+if (t_reply_callid("123qaz", "5", "458", "Replied
remotely")) {
xlog("transaction replied\n");
}
...
diff --git a/modules_k/tmx/doc/tmx_admin.xml b/modules_k/tmx/doc/tmx_admin.xml
index c546723..1012972 100644
--- a/modules_k/tmx/doc/tmx_admin.xml
+++ b/modules_k/tmx/doc/tmx_admin.xml
@@ -161,10 +161,10 @@ if (t_cancel_callid("123qaz", "5",
"22")) {
This function can be used in ANY_ROUTE.
</para>
<example>
- <title><function>t_cancel_reply</function> usage</title>
+ <title><function>t_reply_callid</function> usage</title>
<programlisting format="linespecific">
...
-if (t_cancel_reply("123qaz", "5", "458", "Replied
remotely")) {
+if (t_reply_callid("123qaz", "5", "458", "Replied
remotely")) {
xlog("transaction replied\n");
}
...