Functions
<function>acc_log_request(comment)</function> acc_request reports on a request, for example, it can be used to report on missed calls to off-line users who are replied 404. To avoid multiple reports on UDP request retransmission, you would need to embed the action in stateful processing. Meaning of the parameters is as follows: comment - Comment to be appended. acc_log_request usage ... acc_log_request("Some comment"); ...
<function>acc_db_request(comment, table)</function> Like acc_log_request, acc_db_request reports on a request. The report is sent to database at "db_url", in the table referred to in the second action parameter Meaning of the parameters is as follows: comment - Comment to be appended. table - Database table to be used. acc_db_request usage ... acc_log_request("Some comment", "Some table"); ...
<function>acc_rad_request(comment)</function> Like acc_log_request, acc_rad_request reports on a request. It reports to radius server as configured in "radius_config". Meaning of the parameters is as follows: comment - Comment to be appended. acc_rad_request usage ... acc_rad_request("Some comment"); ...
<function>acc_diam_request(comment)</function> Like acc_log_request, acc_diam_request reports on a request. It reports to Diameter server. Meaning of the parameters is as follows: comment - Comment to be appended. acc_diam_request usage ... acc_diam_request("Some comment"); ...