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
d1cee955
Commit
d1cee955
authored
Feb 17, 2011
by
Simon Morlat
Browse files
update ms2 and fix non ansi c
parent
a24ea4b1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
coreapi/proxy.c
coreapi/proxy.c
+2
-1
mediastreamer2
mediastreamer2
+1
-1
po/POTFILES.in
po/POTFILES.in
+1
-0
No files found.
coreapi/proxy.c
View file @
d1cee955
...
...
@@ -249,13 +249,14 @@ static char *guess_contact_for_register(LinphoneProxyConfig *obj){
if
(
host
!=
NULL
){
LinphoneAddress
*
contact
;
char
localip
[
LINPHONE_IPADDR_SIZE
];
LCSipTransports
tr
;
linphone_core_get_local_ip
(
obj
->
lc
,
host
,
localip
);
contact
=
linphone_address_new
(
obj
->
reg_identity
);
linphone_address_set_domain
(
contact
,
localip
);
linphone_address_set_port_int
(
contact
,
linphone_core_get_sip_port
(
obj
->
lc
));
linphone_address_set_display_name
(
contact
,
NULL
);
LCSipTransports
tr
;
linphone_core_get_sip_transports
(
obj
->
lc
,
&
tr
);
if
(
tr
.
udp_port
<=
0
&&
tr
.
tcp_port
>
0
)
{
sal_address_add_param
(
contact
,
"transport"
,
"tcp"
);
...
...
mediastreamer2
@
874577ad
Subproject commit
9557b33ab49e4c309bc1f954a2afae25079c757a
Subproject commit
874577ad3a835255fc719da26f5dbdadf301aa01
po/POTFILES.in
View file @
d1cee955
...
...
@@ -29,6 +29,7 @@ coreapi/presence.c
coreapi/friend.c
coreapi/proxy.c
coreapi/callbacks.c
coreapi/sal_eXosip2.c
mediastreamer2/src/alaw.c
mediastreamer2/src/alsa.c
mediastreamer2/src/aqsnd.c
...
...
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