mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
Moved core logic from app_stasis to res_stasis
After some discussion on asterisk-dev, it was decided that the bulk of the logic in app_stasis actually belongs in a resource module instead of the application module. This patch does that, leaves the app specific stuff in app_stasis, and fixes up everything else to be consistent with that change. * Renamed test_app_stasis to test_res_stasis * Renamed app_stasis.h to stasis_app.h * This is still stasis application support, even though it's no longer in an app_ module. The name should never have been tied to the type of module, anyways. * Now that json isn't a resource module anymore, moved the ast_channel_snapshot_to_json function to main/stasis_channels.c, where it makes more sense. Review: https://reviewboard.asterisk.org/r/2430/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@385742 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -665,7 +665,7 @@ static void channel_dtmf_begin(struct ast_channel_blob *obj)
|
||||
const char *direction =
|
||||
ast_json_string_get(ast_json_object_get(obj->blob, "direction"));
|
||||
|
||||
channel_event_string = manager_build_channel_state_string(obj->snapshot);
|
||||
channel_event_string = ast_manager_build_channel_state_string(obj->snapshot);
|
||||
|
||||
if (!channel_event_string) {
|
||||
return;
|
||||
@@ -706,7 +706,7 @@ static void channel_dtmf_end(struct ast_channel_blob *obj)
|
||||
long duration_ms =
|
||||
ast_json_integer_get(ast_json_object_get(obj->blob, "duration_ms"));
|
||||
|
||||
channel_event_string = manager_build_channel_state_string(obj->snapshot);
|
||||
channel_event_string = ast_manager_build_channel_state_string(obj->snapshot);
|
||||
|
||||
if (!channel_event_string) {
|
||||
return;
|
||||
|
Reference in New Issue
Block a user