mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
Add hangupcause translation support
The HANGUPCAUSE hash (trunk only) meant to replace SIP_CAUSE has now been replaced with the HANGUPCAUSE and HANGUPCAUSE_KEYS dialplan functions to better facilitate access to the AST_CAUSE translations for technology-specific cause codes. The HangupCauseClear application has also been added to remove this data from the channel. (closes issue SWP-4738) Review: https://reviewboard.asterisk.org/r/2025/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370316 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -933,7 +933,7 @@ static enum ast_bridge_result local_bridge_loop(struct ast_channel *c0, struct a
|
||||
}
|
||||
ast_frfree(fr);
|
||||
} else if (fr->subclass.integer == AST_CONTROL_PVT_CAUSE_CODE) {
|
||||
ast_channel_hangupcause_hash_set(other, fr->data.ptr);
|
||||
ast_channel_hangupcause_hash_set(other, fr->data.ptr, fr->datalen);
|
||||
ast_frfree(fr);
|
||||
} else {
|
||||
*fo = fr;
|
||||
@@ -1227,7 +1227,7 @@ static enum ast_bridge_result remote_bridge_loop(struct ast_channel *c0,
|
||||
}
|
||||
ast_frfree(fr);
|
||||
} else if (fr->subclass.integer == AST_CONTROL_PVT_CAUSE_CODE) {
|
||||
ast_channel_hangupcause_hash_set(other, fr->data.ptr);
|
||||
ast_channel_hangupcause_hash_set(other, fr->data.ptr, fr->datalen);
|
||||
ast_frfree(fr);
|
||||
} else {
|
||||
*fo = fr;
|
||||
|
Reference in New Issue
Block a user