forked from mirrors/linphone-iphone
57 lines
2 KiB
C
57 lines
2 KiB
C
/*
|
|
linphone
|
|
Copyright (C) 2012 Belledonne Communications SARL
|
|
Author: Simon MORLAT (simon.morlat@linphone.org)
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "linphone/core.h"
|
|
#include "linphone/core_utils.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
LinphoneProxyConfig *cfg;
|
|
char *normalized_number;
|
|
if (argc < 2) {
|
|
fprintf(stderr, "Usage:\n%s <phone number> [<country code>] [--escape-plus]\nReturns normalized number.",
|
|
argv[0]);
|
|
return -1;
|
|
}
|
|
linphone_core_enable_logs(stderr);
|
|
linphone_core_set_log_level(ORTP_DEBUG);
|
|
cfg = linphone_proxy_config_new();
|
|
if (argc > 2)
|
|
linphone_proxy_config_set_dial_prefix(cfg, argv[2]);
|
|
if (argc > 3 && strcmp(argv[3], "--escape-plus") == 0)
|
|
linphone_proxy_config_set_dial_escape_plus(cfg, TRUE);
|
|
normalized_number = linphone_proxy_config_normalize_phone_number(cfg, argv[1]);
|
|
|
|
if (!normalized_number) {
|
|
printf("Invalid phone number: %s\n", argv[1]);
|
|
} else {
|
|
printf("Normalized number is %s\n", normalized_number);
|
|
/*check extracted ccc*/
|
|
if (linphone_proxy_config_get_dial_prefix(cfg) != NULL) {
|
|
if (linphone_dial_plan_lookup_ccc_from_e164(normalized_number) !=
|
|
atoi(linphone_proxy_config_get_dial_prefix(cfg))) {
|
|
printf("Error ccc [%i] not correctly parsed\n",
|
|
linphone_dial_plan_lookup_ccc_from_e164(normalized_number));
|
|
} else {
|
|
printf("Extracted ccc is [%i] \n", linphone_dial_plan_lookup_ccc_from_e164(normalized_number));
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|