Ticket #268: Add stub RDP parameters.

This commit is contained in:
Michael Jumper
2013-02-13 18:59:14 -08:00
parent b010749716
commit 21040ba2d8

View File

@@ -614,10 +614,51 @@ GuacamoleService.Protocols = {
"title" : "Port",
"type" : "text",
"value" : "5900"
},
"color-depth" : {
"title" : "Color depth",
"type" : "enum",
"options" : {
"8" : "256 colors",
"16": "High color (16-bit)",
"24": "True color (24-bit)"
}
},
"read-only" : {
"title" : "Read-only",
"type" : "boolean",
"checked" : "true",
"unchecked" : ""
}
}
}, {
/* Unique name */
"name" : "rdp",
/* Display title */
"title" : "RDP",
/* All available parameters */
"parameters" : {
"hostname" : {
"title" : "Hostname",
"type" : "text"
},
"port" : {
"title" : "Port",
"type" : "text",
"value" : "3389"
}
}
}];
}