Commit 87d0a6f1 authored by Guillaume Beraudo's avatar Guillaume Beraudo
Browse files

Add linphone_tunnel_set_http_proxy_auth_info method.

parent 0faf3bdf
No related merge requests found
Showing with 5 additions and 1 deletion
......@@ -75,6 +75,10 @@ void linphone_tunnel_enable_logs_with_handler(LinphoneTunnelManager *tunnel, boo
bcTunnel(tunnel)->enableLogs(enabled, logHandler);
}
void linphone_tunnel_set_http_proxy_auth_info(LinphoneTunnelManager *tunnel, const char* username,const char* passwd){
bcTunnel(tunnel)->setHttpProxyAuthInfo(username, passwd);
}
void linphone_tunnel_reconnect(LinphoneTunnelManager *tunnel){
bcTunnel(tunnel)->reconnect();
}
......
......@@ -48,7 +48,7 @@ void linphone_tunnel_enable_logs(LinphoneTunnelManager *tunnel, bool_t enabled);
void linphone_tunnel_enable_logs_with_handler(LinphoneTunnelManager *tunnel, bool_t enabled, LogHandler logHandler);
void linphone_tunnel_reconnect(LinphoneTunnelManager *tunnel);
void linphone_tunnel_auto_detect(LinphoneTunnelManager *tunnel);
void linphone_tunnel_set_http_proxy_auth_info(const char* username,const char* passwd);
/**
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment