[Spice-devel] [PATCH spice-gtk] main: Handle file-xfer detailed errors

Jakub Janků janku.jakub.jj at gmail.com
Sun May 28 21:36:34 UTC 2017


Log appropriate error messages when we receive
VD_AGENT_FILE_XFER_STATUS_SESSION_LOCKED or
VD_AGENT_FILE_XFER_STATUS_NO_AGENT.
---
 src/channel-main.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/channel-main.c b/src/channel-main.c
index af1350c..2a53a3f 100644
--- a/src/channel-main.c
+++ b/src/channel-main.c
@@ -1882,6 +1882,16 @@ static void main_agent_handle_xfer_status(SpiceMainChannel *channel,
         g_free(file_size_str);
         break;
     }
+    case VD_AGENT_FILE_XFER_STATUS_SESSION_LOCKED:
+        error = g_error_new_literal(SPICE_CLIENT_ERROR, SPICE_CLIENT_ERROR_FAILED,
+                                    _("User's session is locked and cannot transfer files, "
+                                      "unlock and try again."));
+        break;
+    case VD_AGENT_FILE_XFER_STATUS_NO_AGENT:
+        error = g_error_new_literal(SPICE_CLIENT_ERROR, SPICE_CLIENT_ERROR_FAILED,
+                                    _("Could not find an agent connection belonging to the "
+                                      "active session, file-xfer cancelled."));
+        break;
     case VD_AGENT_FILE_XFER_STATUS_SUCCESS:
         break;
     default:
-- 
2.9.4



More information about the Spice-devel mailing list