Skip to content

Commit 72d69de

Browse files
committed
Add description for a couple of RDP errors
1 parent f9697a6 commit 72d69de

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

remmina-plugins/rdp/rdp_plugin.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,6 +1093,12 @@ static gboolean remmina_rdp_main(RemminaProtocolWidget* gp)
10931093
case FREERDP_ERROR_DNS_NAME_NOT_FOUND:
10941094
remmina_plugin_service->protocol_plugin_set_error(gp, _("Unable to find the address of RDP server %s."), rfi->settings->ServerHostname );
10951095
break;
1096+
case FREERDP_ERROR_TLS_CONNECT_FAILED:
1097+
remmina_plugin_service->protocol_plugin_set_error(gp, _("Error connecting to RDP server %s. TLS connection failed. Check that client and server support a common TLS version."), rfi->settings->ServerHostname );
1098+
break;
1099+
case FREERDP_ERROR_SECURITY_NEGO_CONNECT_FAILED:
1100+
remmina_plugin_service->protocol_plugin_set_error(gp, _("Unable to establish a connection to RDP server %s."), rfi->settings->ServerHostname );
1101+
break;
10961102
default:
10971103
remmina_plugin_service->protocol_plugin_set_error(gp, _("Unable to connect to RDP server %s"), rfi->settings->ServerHostname);
10981104
break;

0 commit comments

Comments
 (0)