summaryrefslogtreecommitdiff
path: root/main/stasis_bridging.c
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-05-31 12:41:10 +0000
committerKinsey Moore <kmoore@digium.com>2013-05-31 12:41:10 +0000
commit39d5e40cd58c25f80759d1be9e5df945cf4e1da1 (patch)
treea342e9e8edf3816b4f2ca40fed09cb7b7cde9082 /main/stasis_bridging.c
parente1bff7958adbf7780a70fd6e687e344edf11fdcc (diff)
Remove remnant of snapshot blob JSON types
Remove usage of the once-mandatory snapshot blob type field, refactor confbridge stasis messages accordingly, and remove ast_bridge_blob_json_type(). Review: https://reviewboard.asterisk.org/r/2575/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390250 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/stasis_bridging.c')
-rw-r--r--main/stasis_bridging.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/main/stasis_bridging.c b/main/stasis_bridging.c
index 56c1dfbcd..d181c400c 100644
--- a/main/stasis_bridging.c
+++ b/main/stasis_bridging.c
@@ -262,15 +262,6 @@ struct stasis_message *ast_bridge_blob_create(
return msg;
}
-const char *ast_bridge_blob_json_type(struct ast_bridge_blob *obj)
-{
- if (obj == NULL) {
- return NULL;
- }
-
- return ast_json_string_get(ast_json_object_get(obj->blob, "type"));
-}
-
void ast_bridge_publish_enter(struct ast_bridge *bridge, struct ast_channel *chan)
{
RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);