diff --git a/src/protocols/rdp/rdp_settings.c b/src/protocols/rdp/rdp_settings.c index 0e90f4dc..728c9a64 100644 --- a/src/protocols/rdp/rdp_settings.c +++ b/src/protocols/rdp/rdp_settings.c @@ -356,8 +356,22 @@ enum RDP_ARGS_IDX { #endif + /** + * The full absolute path to the directory in which screen recordings + * should be written. + */ IDX_RECORDING_PATH, + + /** + * The name that should be given to screen recording which are written in + * the given path. + */ IDX_RECORDING_NAME, + + /** + * Whether the specified screen recording path should automatically be + * created if it does not yet exist. + */ IDX_CREATE_RECORDING_PATH, RDP_ARGS_COUNT diff --git a/src/protocols/vnc/settings.c b/src/protocols/vnc/settings.c index ffff5623..c1839069 100644 --- a/src/protocols/vnc/settings.c +++ b/src/protocols/vnc/settings.c @@ -232,8 +232,22 @@ enum VNC_ARGS_IDX { IDX_SFTP_DIRECTORY, #endif + /** + * The full absolute path to the directory in which screen recordings + * should be written. + */ IDX_RECORDING_PATH, + + /** + * The name that should be given to screen recording which are written in + * the given path. + */ IDX_RECORDING_NAME, + + /** + * Whether the specified screen recording path should automatically be + * created if it does not yet exist. + */ IDX_CREATE_RECORDING_PATH, VNC_ARGS_COUNT