mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 21:58:08 +00:00
Add linphone_tunnel_set_http_proxy_auth_info method.
This commit is contained in:
parent
0faf3bdf88
commit
87d0a6f1ea
2 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue