mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 03:48:02 +00:00
Merge in the bridge_construction branch to make the system use the Bridging API.
Breaks many things until they can be reworked. A partial list: chan_agent chan_dahdi, chan_misdn, chan_iax2 native bridging app_queue COLP updates DTMF attended transfers Protocol attended transfers git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@389378 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -635,6 +635,10 @@ void ast_frame_subclass2str(struct ast_frame *f, char *subclass, size_t slen, ch
|
||||
/* Should never happen */
|
||||
snprintf(subclass, slen, "IAX Frametype %d", f->subclass.integer);
|
||||
break;
|
||||
case AST_FRAME_BRIDGE_ACTION:
|
||||
/* Should never happen */
|
||||
snprintf(subclass, slen, "Bridge Frametype %d", f->subclass.integer);
|
||||
break;
|
||||
case AST_FRAME_TEXT:
|
||||
ast_copy_string(subclass, "N/A", slen);
|
||||
if (moreinfo) {
|
||||
@@ -722,6 +726,10 @@ void ast_frame_type2str(enum ast_frame_type frame_type, char *ftype, size_t len)
|
||||
/* Should never happen */
|
||||
ast_copy_string(ftype, "IAX Specific", len);
|
||||
break;
|
||||
case AST_FRAME_BRIDGE_ACTION:
|
||||
/* Should never happen */
|
||||
ast_copy_string(ftype, "Bridge Specific", len);
|
||||
break;
|
||||
case AST_FRAME_TEXT:
|
||||
ast_copy_string(ftype, "Text", len);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user