mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-06 01:45:11 +00:00
Add support for Digium Phones.
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8-digiumphones@357459 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4295,6 +4295,7 @@ static int attribute_const is_visible_indication(enum ast_control_frame_type con
|
||||
case AST_CONTROL_CC:
|
||||
case AST_CONTROL_READ_ACTION:
|
||||
case AST_CONTROL_AOC:
|
||||
case AST_CONTROL_CUSTOM:
|
||||
case AST_CONTROL_END_OF_Q:
|
||||
case AST_CONTROL_UPDATE_RTP_PEER:
|
||||
break;
|
||||
@@ -4483,6 +4484,7 @@ int ast_indicate_data(struct ast_channel *chan, int _condition,
|
||||
case AST_CONTROL_CC:
|
||||
case AST_CONTROL_READ_ACTION:
|
||||
case AST_CONTROL_AOC:
|
||||
case AST_CONTROL_CUSTOM:
|
||||
case AST_CONTROL_END_OF_Q:
|
||||
case AST_CONTROL_UPDATE_RTP_PEER:
|
||||
/* Nothing left to do for these. */
|
||||
@@ -9537,3 +9539,8 @@ struct ast_channel *ast_channel_alloc(int needqueue, int state, const char *cid_
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
void ast_channel_unlink(struct ast_channel *chan)
|
||||
{
|
||||
ao2_unlink(channels, chan);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user