mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-29 17:29:20 +00:00
Merge branch 'master' of git://git.linphone.org/linphone
This commit is contained in:
commit
06b812c6e2
1 changed files with 10 additions and 1 deletions
|
|
@ -40,22 +40,28 @@ void linphone_tunnel_destroy(LinphoneTunnel *tunnel){
|
|||
|
||||
|
||||
void linphone_tunnel_add_server(LinphoneTunnel *tunnel, LinphoneTunnelConfig *tunnel_config){
|
||||
ms_warning("linphone_tunnel_add_server() - stubbed, no implementation");
|
||||
}
|
||||
|
||||
void linphone_tunnel_remove_server(LinphoneTunnel *tunnel, LinphoneTunnelConfig *tunnel_config){
|
||||
ms_warning("linphone_tunnel_remove_server() - stubbed, no implementation");
|
||||
}
|
||||
|
||||
const MSList *linphone_tunnel_get_servers(const LinphoneTunnel *tunnel){
|
||||
ms_warning("linphone_tunnel_get_servers() - stubbed, no implementation");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void linphone_tunnel_clean_servers(LinphoneTunnel *tunnel){
|
||||
ms_warning("linphone_tunnel_clean_servers() - stubbed, no implementation");
|
||||
}
|
||||
|
||||
void linphone_tunnel_set_mode(LinphoneTunnel *tunnel, LinphoneTunnelMode mode) {
|
||||
ms_warning("linphone_tunnel_set_mode() - stubbed, no implementation");
|
||||
}
|
||||
|
||||
LinphoneTunnelMode linphone_tunnel_get_mode(const LinphoneTunnel *tunnel){
|
||||
ms_warning("linphone_tunnel_get_mode() - stubbed, no implementation");
|
||||
return LinphoneTunnelModeDisable;
|
||||
}
|
||||
|
||||
|
|
@ -83,9 +89,12 @@ void linphone_tunnel_reconnect(LinphoneTunnel *tunnel){
|
|||
}
|
||||
|
||||
void linphone_tunnel_configure(LinphoneTunnel *tunnel){
|
||||
ms_warning("linphone_tunnel_configure() - stubbed, no implementation");
|
||||
}
|
||||
|
||||
void linphone_tunnel_enable_sip(LinphoneTunnel *tunnel, bool_t enable) {}
|
||||
void linphone_tunnel_enable_sip(LinphoneTunnel *tunnel, bool_t enable) {
|
||||
ms_warning("linphone_tunnel_enable_sip() - stubbed, no implementation");
|
||||
}
|
||||
bool_t linphone_tunnel_sip_enabled(const LinphoneTunnel *tunnel) { return FALSE; }
|
||||
|
||||
/* Deprecated functions */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue