forked from mirrors/linphone-iphone
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#include "call-pause.h"
|
|
|
|
CallPause::CallPause() :
|
|
DaemonCommand("call-pause",
|
|
"call-pause <call id>",
|
|
"Pause a call (pause current if no id is specified).")
|
|
{
|
|
addExample(new DaemonCommandExample("call-pause 1",
|
|
"Status: Ok\n\n"
|
|
"Call was paused"));
|
|
|
|
addExample(new DaemonCommandExample("call-pause 2",
|
|
"Status: Error\n"
|
|
"Reason: No call with such id."));
|
|
|
|
addExample(new DaemonCommandExample("call-pause",
|
|
"Status: Error\n"
|
|
"Reason: No current call available."));
|
|
}
|
|
|
|
void CallPause::exec(Daemon* app, const char* args)
|
|
{
|
|
LinphoneCore *lc = app->getCore();
|
|
int cid;
|
|
LinphoneCall *call = NULL;
|
|
bool current = false;
|
|
if (sscanf(args, "%i", &cid) == 1) {
|
|
call = app->findCall(cid);
|
|
if (call == NULL) {
|
|
app->sendResponse(Response("No call with such id."));
|
|
return;
|
|
}
|
|
} else {
|
|
call = linphone_core_get_current_call(lc);
|
|
current = true;
|
|
if (call == NULL) {
|
|
app->sendResponse(Response("No current call available."));
|
|
return;
|
|
}
|
|
}
|
|
|
|
if( linphone_core_pause_call(lc, call) == 0 ) {
|
|
app->sendResponse(Response(current?"Current call was paused":
|
|
"Call was paused", Response::Ok));
|
|
} else {
|
|
app->sendResponse(Response("Error pausing call"));
|
|
}
|
|
}
|