aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-31 15:45:29 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-10-31 15:45:29 +0000
commit9192321f1e2aaa11979415d54eac9d38ba8ee0cd (patch)
tree75995b24a6443610715ef55ec0893b3cad7570f0 /include/asterisk
parentd77aa8ad92e158abb6610e2ce9599abc1c4fbb58 (diff)
Recent CDR fixes moved execution of the 'h' exten into the bridging code, so variables that were set after ast_bridge_call was called would not show up in the 'h' exten. Added a callback function to handle setting variables, etc. from w/in the bridging code. Calls back into a nested function within the function calling ast_bridge_call
(closes issue #13793) Reported by: greenfieldtech git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@153095 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/channel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 5e42953cb..82055be14 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -540,6 +540,7 @@ struct ast_bridge_config {
const char *start_sound;
int firstpass;
unsigned int flags;
+ void (* end_bridge_callback)(void); /*!< A callback that is called after a bridge attempt */
};
struct chanmon;