server: Add channel handling for mouse cursor channel ([MS-RDPEMSC])

The mouse cursor channel enables remoting of the mouse cursor (bitmap)
over a DVC. The main use case is UDP, as only virtual channels can be
transported via UDP in RDP.
This commit is contained in:
Pascal Nowack
2023-10-22 11:38:48 +02:00
committed by akallabeth
parent 850afe68a0
commit 687ed017d3
8 changed files with 1065 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
set(OPTION_DEFAULT ON)
set(OPTION_CLIENT_DEFAULT OFF)
set(OPTION_SERVER_DEFAULT ON)
define_channel_options(NAME "rdpemsc" TYPE "dynamic"
DESCRIPTION "Mouse Cursor Virtual Channel Extension"
SPECIFICATIONS "[MS-RDPEMSC]"
DEFAULT ${OPTION_DEFAULT})
define_channel_server_options(${OPTION_SERVER_DEFAULT})