]> sjero.net Git - linphone/blob - coreapi/test_numbers.c
Aac-eld add missing header according to RFC3640 3.3.6
[linphone] / coreapi / test_numbers.c
1 /*
2 linphone
3 Copyright (C) 2012 Belledonne Communications SARL
4 Author: Simon MORLAT (simon.morlat@linphone.org)
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 */
20
21
22 #include "linphonecore.h"
23 #include "linphonecore_utils.h"
24
25 int main(int argc , char *argv[]){
26         LinphoneProxyConfig *cfg;
27         char normalized_number[32];
28         if (argc<2){
29                 fprintf(stderr,"Usage:\n%s <phone number> [<country code>] [--escape-plus]\nReturns normalized number.", argv[0]);
30                 return -1;
31         }
32         linphone_core_enable_logs(stderr);
33         cfg=linphone_proxy_config_new();
34         if (argc>2)
35                 linphone_proxy_config_set_dial_prefix(cfg,argv[2]);
36         if (argc>3 && strcmp(argv[3],"--escape-plus")==0)
37                 linphone_proxy_config_set_dial_escape_plus(cfg,TRUE);
38         linphone_proxy_config_normalize_number(cfg,argv[1],normalized_number,sizeof(normalized_number));
39
40         printf("Normalized number is %s\n",normalized_number);
41         /*check extracted ccc*/
42         if (linphone_dial_plan_lookup_ccc_from_e164(normalized_number) != atoi(linphone_proxy_config_get_dial_prefix(cfg))) {
43                 printf("Error ccc [%i] not correctly parsed\n",linphone_dial_plan_lookup_ccc_from_e164(normalized_number));
44         } else {
45                 printf("Extracted ccc is [%i] \n",linphone_dial_plan_lookup_ccc_from_e164(normalized_number));
46         }
47         return 0;
48 }