mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-04-20 19:18:31 +00:00
Handle LinphoneIceStateFailed.
This commit is contained in:
parent
92600fc6bb
commit
e43709fd12
1 changed files with 3 additions and 1 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue