]> sjero.net Git - linphone/blob - coreapi/linphone_tunnel.h
refine tunnel implementation
[linphone] / coreapi / linphone_tunnel.h
1 /***************************************************************************
2  *            linphone_tunnel.h
3  *
4  *  Fri Dec 9, 2011
5  *  Copyright  2011  Belledonne Communications
6  *  Author: Guillaume Beraudo
7  *  Email: guillaume dot beraudo at linphone dot org
8  ****************************************************************************/
9
10 /*
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This program is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24  */
25  
26 #ifndef LINPHONETUNNELMANAGER_H
27 #define LINPHONETUNNELMANAGER_H
28
29 #include "linphonecore.h"
30
31 /*
32  * Linphone VoIP tunnel extension API
33 **/
34
35 #ifdef __cplusplus
36 extern "C"
37 {
38 #endif
39
40
41 void linphone_tunnel_add_server(LinphoneTunnel *tunnel, const char *host, int port);
42 void linphone_tunnel_add_server_and_mirror(LinphoneTunnel *tunnel, const char *host, int port, int remote_udp_mirror, int delay);
43 /*returns a string of space separated list of host:port of tunnel server addresses*/
44 char *linphone_tunnel_get_servers(LinphoneTunnel *tunnel);
45 void linphone_tunnel_clean_servers(LinphoneTunnel *tunnel);
46 void linphone_tunnel_enable(LinphoneTunnel *tunnel, bool_t enabled);
47 bool_t linphone_tunnel_enabled(LinphoneTunnel *tunnel);
48 void linphone_tunnel_reconnect(LinphoneTunnel *tunnel);
49 void linphone_tunnel_auto_detect(LinphoneTunnel *tunnel);
50 void linphone_tunnel_set_http_proxy(LinphoneTunnel *tunnel, const char *host, int port, const char* username,const char* passwd);
51 void linphone_tunnel_set_http_proxy_auth_info(LinphoneTunnel*tunnel, const char* username,const char* passwd);
52
53
54 #ifdef __cplusplus
55 }
56 #endif
57
58
59 #endif
60