]> sjero.net Git - linphone/blob - coreapi/linphone_tunnel_manager.h
rename LinphoneTunnelManager LinphoneTunnel
[linphone] / coreapi / linphone_tunnel_manager.h
1 /***************************************************************************
2  *            linphone_tunnel_manager.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 #ifdef __cplusplus
32 extern "C"
33 {
34 #endif
35
36 typedef struct LinphoneTunnel LinphoneTunnel;
37 typedef void (*LogHandler)(int log_level, const char *str, va_list l);
38
39
40 LinphoneTunnel *linphone_tunnel_get(LinphoneCore *lc);
41
42 void linphone_tunnel_add_server(LinphoneTunnel *tunnel, const char *host, int port);
43 void linphone_tunnel_add_server_and_mirror(LinphoneTunnel *tunnel, const char *host, int port, int remote_udp_mirror, int delay);
44 void linphone_tunnel_clean_servers(LinphoneTunnel *tunnel);
45 void linphone_tunnel_enable(LinphoneTunnel *tunnel, bool_t enabled);
46 bool_t linphone_tunnel_enabled(LinphoneTunnel *tunnel);
47 void linphone_tunnel_enable_logs(LinphoneTunnel *tunnel, bool_t enabled);
48 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, LogHandler logHandler);
49 void linphone_tunnel_reconnect(LinphoneTunnel *tunnel);
50 void linphone_tunnel_auto_detect(LinphoneTunnel *tunnel);
51 void linphone_tunnel_set_http_proxy_auth_info(const char* username,const char* passwd);
52
53
54 /**
55  * LinphoneTunnelState describes the tunnel activation states.
56  */
57 typedef enum _LinphoneTunnelState{
58         LinphoneTunnelDisabled, /**<The tunnel is always on */
59         LinphoneTunnelEnabled, /**<The tunnel is always off */
60         LinphoneTunnelAuto /**<The tunnel is active if needed */
61 }LinphoneTunnelState;
62
63 /**
64  * Set tunnel addresses.
65 **/
66 void linphone_tunnel_set_server_addresses(LinphoneTunnel *tunnel, const char *lists);
67
68 /**
69  * Get tunnel addresses.
70 **/
71 const char *linphone_tunnel_get_server_addresses(LinphoneTunnel *tunnel);
72
73 /**
74  * Set tunnel state.
75 **/
76 void linphone_tunnel_set_state(LinphoneTunnel *tunnel, LinphoneTunnelState state);
77
78 /**
79  * Get tunnel state.
80 **/
81 LinphoneTunnelState linphone_tunnel_get_state(LinphoneTunnel *tunnel);
82
83
84 #ifdef __cplusplus
85 }
86 #endif
87
88
89 #endif