]> sjero.net Git - linphone/blob - coreapi/enum.h
Aac-eld add missing header according to RFC3640 3.3.6
[linphone] / coreapi / enum.h
1 /*
2 linphone
3 Copyright (C) 2000  Simon MORLAT (simon.morlat@free.fr)
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19
20 #ifndef ENUM_LOOKUP_H
21 #define ENUM_LOOKUP_H
22
23 #include "private.h"
24
25 #define MAX_ENUM_LOOKUP_RESULTS 10
26
27 typedef struct enum_lookup_res{
28         char *sip_address[MAX_ENUM_LOOKUP_RESULTS];
29 }enum_lookup_res_t;
30
31 bool_t is_enum(const char *sipaddress, char **enum_domain);
32 int enum_lookup(const char *enum_domain, enum_lookup_res_t **res);
33 void enum_lookup_res_free(enum_lookup_res_t *res);
34
35 #endif