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
b37cdb67
Commit
b37cdb67
authored
Mar 22, 2013
by
Simon Morlat
Browse files
fix previous commit.
parent
2aba9114
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/misc.c
View file @
b37cdb67
...
...
@@ -1113,9 +1113,11 @@ int linphone_core_get_local_ip_for(int type, const char *dest, char *result){
int
err
;
strcpy
(
result
,
type
==
AF_INET
?
"127.0.0.1"
:
"::1"
);
if
(
type
==
AF_INET
)
dest
=
"87.98.157.38"
;
/*a public IP address*/
else
dest
=
"2a00:1450:8002::68"
;
if
(
dest
==
NULL
){
if
(
type
==
AF_INET
)
dest
=
"87.98.157.38"
;
/*a public IP address*/
else
dest
=
"2a00:1450:8002::68"
;
}
err
=
get_local_ip_for_with_connect
(
type
,
dest
,
result
);
if
(
err
==
0
)
return
0
;
...
...
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