bridging: Give bridges a name and a known creator

Bridges have two new optional properties, a creator and a name.
Certain consumers of bridges will automatically provide bridges that
they create with these properties. Examples include app_bridgewait,
res_parking, app_confbridge, and app_agent_pool. In addition, a name
may now be provided as an argument to the POST function for creating
new bridges via ARI.

(closes issue AFS-47)
Review: https://reviewboard.asterisk.org/r/3070/
........

Merged revisions 404042 from http://svn.asterisk.org/svn/asterisk/branches/12


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@404043 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jonathan Rose
2013-12-17 23:25:49 +00:00
parent 91d0f30506
commit b0bb03e916
20 changed files with 145 additions and 24 deletions

View File

@@ -127,6 +127,9 @@ static void ast_ari_bridges_create_cb(
if (strcmp(i->name, "type") == 0) {
args.type = (i->value);
} else
if (strcmp(i->name, "name") == 0) {
args.name = (i->value);
} else
{}
}
/* Look for a JSON request entity */
@@ -149,6 +152,10 @@ static void ast_ari_bridges_create_cb(
if (field) {
args.type = ast_json_string_get(field);
}
field = ast_json_object_get(body, "name");
if (field) {
args.name = ast_json_string_get(field);
}
ast_ari_bridges_create(headers, &args, response);
#if defined(AST_DEVMODE)
code = response->response_code;