Skip to content

Commit

Permalink
yet more logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuehlner committed Nov 10, 2023
1 parent 9ab06d5 commit 3a8a23e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/protocols/vnc/vnc.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,12 +498,15 @@ void* guac_vnc_client_thread(void* data) {
int frame_remaining;

/* Handle any message received */
fprintf(stderr, "About to HandleRFBServerMessage()\n");
if (!HandleRFBServerMessage(rfb_client)) {
fprintf(stderr, "Failed to HandleRFBServerMessage()\n");
guac_client_abort(client,
GUAC_PROTOCOL_STATUS_UPSTREAM_ERROR,
"Error handling message from VNC server.");
break;
}
fprintf(stderr, "Succeeded at HandleRFBServerMessage()\n");

/* Calculate time remaining in frame */
frame_end = guac_timestamp_current();
Expand Down

0 comments on commit 3a8a23e

Please sign in to comment.