Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
31b25e9f
Commit
31b25e9f
authored
Jun 14, 2013
by
Simon Morlat
Browse files
give a chance to update contact address during re-INVITEs
parent
f55699af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
coreapi/linphonecore.c
coreapi/linphonecore.c
+4
-0
No files found.
coreapi/linphonecore.c
View file @
31b25e9f
...
...
@@ -2887,6 +2887,10 @@ int linphone_core_start_update_call(LinphoneCore *lc, LinphoneCall *call){
if
(
lc
->
vtable
.
display_status
)
lc
->
vtable
.
display_status
(
lc
,
_
(
"Modifying call parameters..."
));
sal_call_set_local_media_description
(
call
->
op
,
call
->
localdesc
);
if
(
call
->
dest_proxy
&&
call
->
dest_proxy
->
op
&&
sal_op_get_contact
(
call
->
dest_proxy
->
op
)){
/*give a chance to update the contact address if connectivity has changed*/
sal_op_set_contact
(
call
->
op
,
sal_op_get_contact
(
call
->
dest_proxy
->
op
));
}
return
sal_call_update
(
call
->
op
,
subject
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment