Fixed some symbol errors

This commit is contained in:
Sylvain Berfini 2017-10-18 11:17:48 +02:00
parent e21f193a57
commit 9f98fa5f6c
2 changed files with 9 additions and 0 deletions

View file

@ -38,6 +38,14 @@ LinphoneTunnel* linphone_core_get_tunnel(const LinphoneCore *lc){
void linphone_tunnel_destroy(LinphoneTunnel *tunnel){
}
LinphoneTunnel *linphone_tunnel_ref(LinphoneTunnel *tunnel) {
ms_warning("linphone_tunnel_ref() - stubbed, no implementation");
return tunnel;
}
void linphone_tunnel_unref(LinphoneTunnel *tunnel) {
ms_warning("linphone_tunnel_unref() - stubbed, no implementation");
}
void linphone_tunnel_add_server(LinphoneTunnel *tunnel, LinphoneTunnelConfig *tunnel_config){
ms_warning("linphone_tunnel_add_server() - stubbed, no implementation");

View file

@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "private.h"
#include "linphone/wrapper_utils.h"
LinphoneCoreVTable *linphone_core_v_table_new() {