Add static-channels and corresponding storage.
This commit is contained in:
parent
aa4896da07
commit
b88e23a7d2
@ -93,6 +93,7 @@ const char* GUAC_CLIENT_ARGS[] = {
|
|||||||
"remote-app",
|
"remote-app",
|
||||||
"remote-app-dir",
|
"remote-app-dir",
|
||||||
"remote-app-args",
|
"remote-app-args",
|
||||||
|
"static-channels",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -120,6 +121,7 @@ enum RDP_ARGS_IDX {
|
|||||||
IDX_REMOTE_APP,
|
IDX_REMOTE_APP,
|
||||||
IDX_REMOTE_APP_DIR,
|
IDX_REMOTE_APP_DIR,
|
||||||
IDX_REMOTE_APP_ARGS,
|
IDX_REMOTE_APP_ARGS,
|
||||||
|
IDX_STATIC_CHANNELS,
|
||||||
RDP_ARGS_COUNT
|
RDP_ARGS_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -196,6 +196,16 @@ typedef struct guac_rdp_settings {
|
|||||||
*/
|
*/
|
||||||
char* remote_app_args;
|
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;
|
} guac_rdp_settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user