Add static-channels and corresponding storage.

This commit is contained in:
Michael Jumper 2014-03-01 16:43:55 -08:00
parent aa4896da07
commit b88e23a7d2
2 changed files with 12 additions and 0 deletions

View File

@ -93,6 +93,7 @@ const char* GUAC_CLIENT_ARGS[] = {
"remote-app",
"remote-app-dir",
"remote-app-args",
"static-channels",
NULL
};
@ -120,6 +121,7 @@ enum RDP_ARGS_IDX {
IDX_REMOTE_APP,
IDX_REMOTE_APP_DIR,
IDX_REMOTE_APP_ARGS,
IDX_STATIC_CHANNELS,
RDP_ARGS_COUNT
};

View File

@ -196,6 +196,16 @@ typedef struct guac_rdp_settings {
*/
char* remote_app_args;
/**
* The number of static virtual channels in use.
*/
int svc_count;
/**
* The names of each static virtual channel.
*/
char** svc_names;
} guac_rdp_settings;
/**