From: Mariusz Czułada Date: Tue, 28 May 2013 22:19:49 +0000 (+0200) Subject: FS-5157 patch accepted X-Git-Tag: v1.4.1~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0af6ce81d4ef0b7fa678b28970f0c9e3274542d;p=thirdparty%2Ffreeswitch.git FS-5157 patch accepted --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index cce72306a4..ce5dec977c 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -6362,6 +6362,12 @@ static switch_status_t conf_api_sub_get(conference_obj_t *conference, } else if (strcasecmp(argv[2], "endconf_grace_time") == 0) { stream->write_function(stream, "%d", conference->endconf_grace_time); + } else if (strcasecmp(argv[2], "uuid") == 0) { + stream->write_function(stream, "%s", + conference->uuid_str); + } else if (strcasecmp(argv[2], "wait_mod") == 0) { + stream->write_function(stream, "%s", + switch_test_flag(conference, CFLAG_WAIT_MOD) ? "true" : ""); } else { ret_status = SWITCH_STATUS_FALSE; }