Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
87d0a6f1
Commit
87d0a6f1
authored
13 years ago
by
Guillaume Beraudo
Browse files
Options
Download
Patches
Plain Diff
Add linphone_tunnel_set_http_proxy_auth_info method.
parent
0faf3bdf
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
coreapi/linphone_tunnel_manager.cc
+4
-0
coreapi/linphone_tunnel_manager.cc
coreapi/linphone_tunnel_manager.h
+1
-1
coreapi/linphone_tunnel_manager.h
with
5 additions
and
1 deletion
coreapi/linphone_tunnel_manager.cc
+
4
−
0
View file @
87d0a6f1
...
...
@@ -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
();
}
...
...
This diff is collapsed.
Click to expand it.
coreapi/linphone_tunnel_manager.h
+
1
−
1
View file @
87d0a6f1
...
...
@@ -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
);
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets