aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-26 00:26:16 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-26 00:26:16 +0000
commite619c6b72e0d859fddf01b1fc7c1df4825fae099 (patch)
tree642c6c09bcc6bb0f1a6975dd3d51710f7ec33421 /funcs
parent3617b204010a0f983aaa0bbe8efa1dad16712976 (diff)
might as well also document the raw values of the flag vars
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48017 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_cdr.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/funcs/func_cdr.c b/funcs/func_cdr.c
index c868af17c..9cce75e50 100644
--- a/funcs/func_cdr.c
+++ b/funcs/func_cdr.c
@@ -130,7 +130,7 @@ static struct ast_custom_function cdr_function = {
" values, when the 'u' option is passed, but formatted as YYYY-MM-DD HH:MM:SS\n"
" otherwise. Similarly, disposition and amaflags will return their raw\n"
" integral values.\n",
-" Here is a list of all the available cdr field names:\n",
+" Here is a list of all the available cdr field names:\n"
" clid lastdata disposition\n"
" src start amaflags\n"
" dst answer accountcode\n"
@@ -141,7 +141,16 @@ static struct ast_custom_function cdr_function = {
" userfield, and amaflags. You may, however, supply\n"
" a name not on the above list, and create your own\n"
" variable, whose value can be changed with this function,\n"
-" and this variable will be stored on the cdr.\n",
+" and this variable will be stored on the cdr.\n"
+" raw values for disposition:\n"
+" 1 = NO ANSWER\n"
+" 2 = BUSY\n"
+" 3 = FAILED\n"
+" 4 = ANSWERED\n"
+" raw values for amaflags:\n"
+" 1 = OMIT\n"
+" 2 = BILLING\n"
+" 3 = DOCUMENTATION\n",
};
static int unload_module(void)