mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
app_macro: Remove deprecated module.
For most modules that interacted with app_macro, this change is limited to no longer looking for the current context from the macrocontext when set. Additionally, the following modules are impacted: app_dial - no longer supports M^ connected/redirecting macro app_minivm - samples written using macro will no longer work. The sample needs a re-write app_queue - can no longer a macro on the called party's channel. Use gosub which is currently supported ccss - no callback macro, gosub only app_voicemail - no macro support channel - remove macrocontext and priority, no connected line or redirection macro options options - stdexten is deprecated to gosub as the default and only pbx - removed macrolock pbx_dundi - no longer look for macro snmp - removed macro context, exten, and priority ASTERISK-30304 Change-Id: I830daab293117179b8d61bd4df0d971a1b3d07f6
This commit is contained in:
committed by
Friendly Automation
parent
6ecec51e6a
commit
e8f548c155
@@ -654,8 +654,7 @@ static void handle_frame(struct ast_dial *dial, struct ast_dial_channel *channel
|
||||
break;
|
||||
}
|
||||
ast_verb(3, "%s connected line has changed, passing it to %s\n", ast_channel_name(channel->owner), ast_channel_name(chan));
|
||||
if (ast_channel_connected_line_sub(channel->owner, chan, fr, 1) &&
|
||||
ast_channel_connected_line_macro(channel->owner, chan, fr, 1, 1)) {
|
||||
if (ast_channel_connected_line_sub(channel->owner, chan, fr, 1)) {
|
||||
ast_indicate_data(chan, AST_CONTROL_CONNECTED_LINE, fr->data.ptr, fr->datalen);
|
||||
}
|
||||
break;
|
||||
@@ -664,8 +663,7 @@ static void handle_frame(struct ast_dial *dial, struct ast_dial_channel *channel
|
||||
break;
|
||||
}
|
||||
ast_verb(3, "%s redirecting info has changed, passing it to %s\n", ast_channel_name(channel->owner), ast_channel_name(chan));
|
||||
if (ast_channel_redirecting_sub(channel->owner, chan, fr, 1) &&
|
||||
ast_channel_redirecting_macro(channel->owner, chan, fr, 1, 1)) {
|
||||
if (ast_channel_redirecting_sub(channel->owner, chan, fr, 1)) {
|
||||
ast_indicate_data(chan, AST_CONTROL_REDIRECTING, fr->data.ptr, fr->datalen);
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user