mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
23 lines
752 B
C++
23 lines
752 B
C++
#include "contact.h"
|
|
|
|
using namespace std;
|
|
|
|
ContactCommand::ContactCommand() :
|
|
DaemonCommand("contact", "contact <username> <hostname>", "Set a contact name.") {
|
|
addExample(new DaemonCommandExample("contact sip:root@unknown-host",
|
|
"Status: Ok\n\n"));
|
|
}
|
|
void ContactCommand::exec(Daemon *app, const char *args) {
|
|
LinphoneCore *lc = app->getCore();
|
|
char *contact;
|
|
char username[256] = { 0 };
|
|
char hostname[256] = { 0 };
|
|
if (sscanf(args, "%255s %255s", username, hostname) >= 1) {
|
|
contact=ortp_strdup_printf("sip:%s@%s",username,hostname);
|
|
linphone_core_set_primary_contact(lc,contact);
|
|
ms_free(contact);
|
|
app->sendResponse(Response("", Response::Ok));
|
|
} else {
|
|
app->sendResponse(Response("Missing/Incorrect parameter(s)."));
|
|
}
|
|
}
|