aac8945fe9
With the location channel, an RDP server can redirect the location of the user from the client side to the server side. The PDUs are almost the same as in the documentation, except for the encoded types, these ones are here already parsed. Optional values are accessed via pointers. If the pointer of a value is NULL, then that value was not supplied by the client side.
13 lines
305 B
CMake
13 lines
305 B
CMake
|
|
set(OPTION_DEFAULT ON)
|
|
set(OPTION_CLIENT_DEFAULT OFF)
|
|
set(OPTION_SERVER_DEFAULT ON)
|
|
|
|
define_channel_options(NAME "location" TYPE "dynamic"
|
|
DESCRIPTION "Location Virtual Channel Extension"
|
|
SPECIFICATIONS "[MS-RDPEL]"
|
|
DEFAULT ${OPTION_DEFAULT})
|
|
|
|
define_channel_server_options(${OPTION_SERVER_DEFAULT})
|
|
|