GUACAMOLE-249: Send Format List Response PDU after successfully processing a Format List PDU.
This commit is contained in:
parent
9dd1555c81
commit
de493ba959
@ -191,6 +191,13 @@ static UINT guac_rdp_cliprdr_format_list(CliprdrClientContext* cliprdr,
|
|||||||
guac_rdp_clipboard* clipboard = (guac_rdp_clipboard*) cliprdr->custom;
|
guac_rdp_clipboard* clipboard = (guac_rdp_clipboard*) cliprdr->custom;
|
||||||
assert(clipboard != NULL);
|
assert(clipboard != NULL);
|
||||||
|
|
||||||
|
CLIPRDR_FORMAT_LIST_RESPONSE format_list_response = {
|
||||||
|
.msgFlags = CB_RESPONSE_OK
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Report successful processing of format list */
|
||||||
|
cliprdr->ClientFormatListResponse(cliprdr, &format_list_response);
|
||||||
|
|
||||||
/* Prefer Unicode (in this case, UTF-16) */
|
/* Prefer Unicode (in this case, UTF-16) */
|
||||||
if (guac_rdp_cliprdr_format_supported(format_list, CF_UNICODETEXT))
|
if (guac_rdp_cliprdr_format_supported(format_list, CF_UNICODETEXT))
|
||||||
return guac_rdp_cliprdr_send_format_data_request(cliprdr, CF_UNICODETEXT);
|
return guac_rdp_cliprdr_send_format_data_request(cliprdr, CF_UNICODETEXT);
|
||||||
|
Loading…
Reference in New Issue
Block a user