dect
/
asterisk
Archived
13
0
Fork 0

Add some missing control frames.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@103798 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2008-02-18 22:54:25 +00:00
parent b628d71ddf
commit 8ed70c9fde
1 changed files with 6 additions and 0 deletions

View File

@ -780,6 +780,12 @@ void ast_frame_dump(const char *name, struct ast_frame *f, char *prefix)
case AST_CONTROL_RADIO_UNKEY:
strcpy(subclass, "Unkey Radio");
break;
case AST_CONTROL_HOLD:
strcpy(subclass, "Hold");
break;
case AST_CONTROL_UNHOLD:
strcpy(subclass, "Unhold");
break;
case -1:
strcpy(subclass, "Stop generators");
break;