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
51f5cf64
Commit
51f5cf64
authored
Feb 16, 2021
by
Simon Morlat
Browse files
Repair bad cherry-pick in previous commit
parent
98bd5cd6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
coreapi/misc.c
coreapi/misc.c
+4
-0
coreapi/private_functions.h
coreapi/private_functions.h
+0
-1
No files found.
coreapi/misc.c
View file @
51f5cf64
...
@@ -228,6 +228,10 @@ void linphone_core_enable_forced_ice_relay(LinphoneCore *lc, bool_t enable) {
...
@@ -228,6 +228,10 @@ void linphone_core_enable_forced_ice_relay(LinphoneCore *lc, bool_t enable) {
lc
->
forced_ice_relay
=
enable
;
lc
->
forced_ice_relay
=
enable
;
}
}
bool_t
linphone_core_forced_ice_relay_enabled
(
const
LinphoneCore
*
lc
){
return
lc
->
forced_ice_relay
;
}
void
linphone_core_enable_short_turn_refresh
(
LinphoneCore
*
lc
,
bool_t
enable
)
{
void
linphone_core_enable_short_turn_refresh
(
LinphoneCore
*
lc
,
bool_t
enable
)
{
lc
->
short_turn_refresh
=
enable
;
lc
->
short_turn_refresh
=
enable
;
}
}
...
...
coreapi/private_functions.h
View file @
51f5cf64
...
@@ -246,7 +246,6 @@ LINPHONE_PUBLIC int linphone_run_stun_tests(LinphoneCore *lc, int audioPort, int
...
@@ -246,7 +246,6 @@ LINPHONE_PUBLIC int linphone_run_stun_tests(LinphoneCore *lc, int audioPort, int
char
*
audioCandidateAddr
,
int
*
audioCandidatePort
,
char
*
videoCandidateAddr
,
int
*
videoCandidatePort
,
char
*
textCandidateAddr
,
int
*
textCandidatePort
);
char
*
audioCandidateAddr
,
int
*
audioCandidatePort
,
char
*
videoCandidateAddr
,
int
*
videoCandidatePort
,
char
*
textCandidateAddr
,
int
*
textCandidatePort
);
void
linphone_core_resolve_stun_server
(
LinphoneCore
*
lc
);
void
linphone_core_resolve_stun_server
(
LinphoneCore
*
lc
);
LINPHONE_PUBLIC
const
struct
addrinfo
*
linphone_core_get_stun_server_addrinfo
(
LinphoneCore
*
lc
);
LINPHONE_PUBLIC
const
struct
addrinfo
*
linphone_core_get_stun_server_addrinfo
(
LinphoneCore
*
lc
);
LINPHONE_PUBLIC
void
linphone_core_enable_forced_ice_relay
(
LinphoneCore
*
lc
,
bool_t
enable
);
LINPHONE_PUBLIC
void
linphone_core_enable_short_turn_refresh
(
LinphoneCore
*
lc
,
bool_t
enable
);
LINPHONE_PUBLIC
void
linphone_core_enable_short_turn_refresh
(
LinphoneCore
*
lc
,
bool_t
enable
);
LINPHONE_PUBLIC
void
linphone_call_stats_fill
(
LinphoneCallStats
*
stats
,
MediaStream
*
ms
,
OrtpEvent
*
ev
);
LINPHONE_PUBLIC
void
linphone_call_stats_fill
(
LinphoneCallStats
*
stats
,
MediaStream
*
ms
,
OrtpEvent
*
ev
);
void
linphone_call_stats_update
(
LinphoneCallStats
*
stats
,
MediaStream
*
stream
);
void
linphone_call_stats_update
(
LinphoneCallStats
*
stats
,
MediaStream
*
stream
);
...
...
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