Merge 0.9.13-incubating changes back to master.

This commit is contained in:
James Muehlner
2017-06-05 11:35:48 -07:00
3 changed files with 20 additions and 1 deletions

View File

@@ -57,6 +57,11 @@ CREATE TABLE `guacamole_connection` (
`parent_id` int(11),
`protocol` varchar(32) NOT NULL,
-- Guacamole proxy (guacd) overrides
`proxy_port` integer,
`proxy_hostname` varchar(512),
`proxy_encryption_method` enum('NONE', 'SSL'),
-- Concurrency limits
`max_connections` int(11),
`max_connections_per_user` int(11),

View File

@@ -49,6 +49,15 @@ CREATE TYPE guacamole_system_permission_type AS ENUM(
'ADMINISTER'
);
--
-- Guacamole proxy (guacd) encryption methods
--
CREATE TYPE guacamole_proxy_encryption_method AS ENUM(
'NONE',
'SSL'
);
--
-- Table of connection groups. Each connection group has a name.
--
@@ -97,6 +106,11 @@ CREATE TABLE guacamole_connection (
max_connections integer,
max_connections_per_user integer,
-- Guacamole proxy (guacd) overrides
proxy_port integer,
proxy_hostname varchar(512),
proxy_encryption_method guacamole_proxy_encryption_method,
PRIMARY KEY (connection_id),
CONSTRAINT connection_name_parent

View File

@@ -59,7 +59,7 @@ public class ExtensionModule extends ServletModule {
private static final List<String> ALLOWED_GUACAMOLE_VERSIONS =
Collections.unmodifiableList(Arrays.asList(
"*",
"0.9.12-incubating"
"0.9.13-incubating"
));
/**