[sr-dev] git:master:8deecb1a: modules: readme files regenerated - acc ... [skip ci]

Kamailio Dev kamailio.dev at kamailio.org
Wed Aug 9 09:16:39 CEST 2017


Module: kamailio
Branch: master
Commit: 8deecb1aef4ee33d12ee0da68bf3585162284820
URL: https://github.com/kamailio/kamailio/commit/8deecb1aef4ee33d12ee0da68bf3585162284820

Author: Kamailio Dev <kamailio.dev at kamailio.org>
Committer: Kamailio Dev <kamailio.dev at kamailio.org>
Date: 2017-08-09T09:16:30+02:00

modules: readme files regenerated - acc ... [skip ci]

---

Modified: src/modules/acc/README

---

Diff:  https://github.com/kamailio/kamailio/commit/8deecb1aef4ee33d12ee0da68bf3585162284820.diff
Patch: https://github.com/kamailio/kamailio/commit/8deecb1aef4ee33d12ee0da68bf3585162284820.patch

---

diff --git a/src/modules/acc/README b/src/modules/acc/README
index 07362dd852..581aaca80a 100644
--- a/src/modules/acc/README
+++ b/src/modules/acc/README
@@ -134,7 +134,8 @@ Sven Knoblich
 
               7.1. acc_log_request(comment)
               7.2. acc_db_request(comment, table)
-              7.3. acc_diam_request(comment)
+              7.3. acc_request(comment, table)
+              7.4. acc_diam_request(comment)
 
    2. Frequently Asked Questions
 
@@ -192,7 +193,8 @@ Sven Knoblich
    1.50. cdr_on_failed
    1.51. acc_log_request usage
    1.52. acc_db_request usage
-   1.53. acc_diam_request usage
+   1.53. acc_db_request usage
+   1.54. acc_diam_request usage
 
 Chapter 1. Admin Guide
 
@@ -292,7 +294,8 @@ Chapter 1. Admin Guide
 
         7.1. acc_log_request(comment)
         7.2. acc_db_request(comment, table)
-        7.3. acc_diam_request(comment)
+        7.3. acc_request(comment, table)
+        7.4. acc_diam_request(comment)
 
 1. Overview
 
@@ -1342,7 +1345,8 @@ modparam("acc", "cdr_on_failed", 0)
 
    7.1. acc_log_request(comment)
    7.2. acc_db_request(comment, table)
-   7.3. acc_diam_request(comment)
+   7.3. acc_request(comment, table)
+   7.4. acc_diam_request(comment)
 
 7.1.  acc_log_request(comment)
 
@@ -1386,7 +1390,31 @@ acc_db_request("Some comment", "acc_$time(year)_$time(mon)");
 acc_db_request("$var(code) Error: $avp(reason)", "SomeTable");
 ...
 
-7.3.  acc_diam_request(comment)
+7.3.  acc_request(comment, table)
+
+   Warapper around acc_log_request and acc_db_request functions, writing
+   the accounting record to LOG and DATABASE backends. If “db_url”
+   parameter is not set, the acc record is written only to LOG backend.
+
+   Meaning of the parameters is as follows:
+     * comment - Comment to be used for generating the SIP response code
+       and text fields, if in the format “CODE TEXT”. The CODE should be a
+       valid SIP response code (100..699). The TEXT can be one or many
+       words. If CODE is missing, then 0 is used. The parameter can
+       contain pseudo-variables.
+     * table - Database table to be used. It can contain config variables
+       that are evaluated at runtime.
+
+   This function can be used from ANY_ROUTE.
+
+   Example 1.53. acc_db_request usage
+...
+acc_request("100 Received", "acc");
+acc_request("100 Received", "acc_$time(year)_$time(mon)");
+acc_db_request("$var(code) $avp(reason)", "acc");
+...
+
+7.4.  acc_diam_request(comment)
 
    Like acc_log_request, acc_diam_request reports on a request. It reports
    to the configured Diameter server.
@@ -1397,7 +1425,7 @@ acc_db_request("$var(code) Error: $avp(reason)", "SomeTable");
 
    This function can be used from ANY_ROUTE.
 
-   Example 1.53. acc_diam_request usage
+   Example 1.54. acc_diam_request usage
 ...
 acc_diam_request("Some comment");
 acc_diam_request("$var(code) Error: $avp(reason)");




More information about the sr-dev mailing list