dect
/
asterisk
Archived
13
0
Fork 0

Add CEL extra field to cel_pgsql.

(closes issue #18462)
Reported by: joscas
Patches:
      bug_18462.diff uploaded by snuffy (license 35)
      cel_pgsql.conf.sample.issue18462.patch uploaded by joscas (license 1180)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@317482 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2011-05-05 23:08:05 +00:00
parent 3e4196a930
commit b1614a0ef5
4 changed files with 12 additions and 1 deletions

View File

@ -108,6 +108,11 @@ FollowMe
compatability for a FollowMe call with certain dialplan apps, options, and
functions.
CEL
--------------------------
* cel_pgsql now supports the 'extra' column for data added using the
CELGenUserEvent() application.
------------------------------------------------------------------------------
--- Functionality changes from Asterisk 1.6.2 to Asterisk 1.8 ----------------
------------------------------------------------------------------------------

View File

@ -21,6 +21,10 @@
From 1.8 to 1.10:
cel_pgsql:
- This module now expects an 'extra' column in the database for data added
using the CELGenUserEvent() application.
ConfBridge
- ConfBridge's dialplan arguments have changed and are not
backwards compatible.

View File

@ -239,6 +239,8 @@ static void pgsql_log(const struct ast_event *event, void *userdata)
value = record.user_field;
} else if (strcmp(cur->name, "peer") == 0) {
value = record.peer;
} else if (strcmp(cur->name, "extra") == 0) {
value = record.extra;
} else {
value = NULL;
}

View File

@ -51,7 +51,7 @@
; amaflag (an int)
; userfield
; peer
; extra
[global]
;hostname=localhost