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:
Jason Parker
2012-02-28 21:52:48 +00:00
parent f11923e651
commit f9834fd128
41 changed files with 6074 additions and 153 deletions

View File

@@ -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);
}