mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-05 20:39:33 +00:00
return +OK on success
This commit is contained in:
parent
ae7371e7c5
commit
a14ad62e32
@ -3187,8 +3187,13 @@ SWITCH_STANDARD_API(uuid_answer_function)
|
|||||||
|
|
||||||
if (uuid && (xsession = switch_core_session_locate(uuid))) {
|
if (uuid && (xsession = switch_core_session_locate(uuid))) {
|
||||||
switch_channel_t *channel = switch_core_session_get_channel(xsession);
|
switch_channel_t *channel = switch_core_session_get_channel(xsession);
|
||||||
switch_channel_answer(channel);
|
switch_status_t status = switch_channel_answer(channel);
|
||||||
switch_core_session_rwunlock(xsession);
|
switch_core_session_rwunlock(xsession);
|
||||||
|
if (status == SWITCH_STATUS_SUCCESS) {
|
||||||
|
stream->write_function(stream, "+OK\n");
|
||||||
|
} else {
|
||||||
|
stream->write_function(stream, "-ERROR\n");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
stream->write_function(stream, "-ERROR\n");
|
stream->write_function(stream, "-ERROR\n");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user