linphone-iphone/daemon/commands/unregister.cc
2016-11-29 18:28:26 +01:00

69 lines
2.1 KiB
C++

/*
unregister.cc
Copyright (C) 2016 Belledonne Communications, Grenoble, France
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "unregister.h"
using namespace std;
UnregisterCommand::UnregisterCommand() :
DaemonCommand("unregister", "unregister <register_id|ALL>", "Unregister the daemon from the specified proxy or from all proxies.") {
addExample(new DaemonCommandExample("unregister 3",
"Status: Error\n"
"Reason: No register with such id."));
addExample(new DaemonCommandExample("unregister 2",
"Status: Ok"));
addExample(new DaemonCommandExample("unregister ALL",
"Status: Ok"));
}
void UnregisterCommand::exec(Daemon *app, const string& args) {
LinphoneProxyConfig *cfg = NULL;
string param;
int pid;
istringstream ist(args);
ist >> param;
if (ist.fail()) {
app->sendResponse(Response("Missing parameter.", Response::Error));
return;
}
if (param.compare("ALL") == 0) {
for (int i = 1; i <= app->maxProxyId(); i++) {
cfg = app->findProxy(i);
if (cfg != NULL) {
linphone_core_remove_proxy_config(app->getCore(), cfg);
}
}
} else {
ist.clear();
ist.str(param);
ist >> pid;
if (ist.fail()) {
app->sendResponse(Response("Incorrect parameter.", Response::Error));
return;
}
cfg = app->findProxy(pid);
if (cfg == NULL) {
app->sendResponse(Response("No register with such id.", Response::Error));
return;
}
linphone_core_remove_proxy_config(app->getCore(), cfg);
}
app->sendResponse(Response());
}