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
e43709fd
Commit
e43709fd
authored
Sep 19, 2012
by
Ghislain MARY
Browse files
Handle LinphoneIceStateFailed.
parent
92600fc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
gtk/incall_view.c
gtk/incall_view.c
+3
-1
No files found.
gtk/incall_view.c
View file @
e43709fd
...
@@ -215,7 +215,9 @@ static void show_used_codecs(GtkWidget *callstats, LinphoneCall *call){
...
@@ -215,7 +215,9 @@ static void show_used_codecs(GtkWidget *callstats, LinphoneCall *call){
static
const
char
*
ice_state_to_string
(
LinphoneIceState
ice_state
){
static
const
char
*
ice_state_to_string
(
LinphoneIceState
ice_state
){
switch
(
ice_state
){
switch
(
ice_state
){
case
LinphoneIceStateNotActivated
:
case
LinphoneIceStateNotActivated
:
return
_
(
"Ice not activated"
);
return
_
(
"ICE not activated"
);
case
LinphoneIceStateFailed
:
return
_
(
"ICE failed"
);
case
LinphoneIceStateInProgress
:
case
LinphoneIceStateInProgress
:
return
_
(
"ICE in progress"
);
return
_
(
"ICE in progress"
);
case
LinphoneIceStateReflexiveConnection
:
case
LinphoneIceStateReflexiveConnection
:
...
...
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