GUACAMOLE-47: Change new token names to something more descriptive.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/44a197c7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/44a197c7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/44a197c7 Branch: refs/heads/master Commit: 44a197c7627af96d79aa0efc37e8366bceebda02 Parents: ac08688 Author: Nick Couchman <[email protected]> Authored: Wed Jan 25 13:03:28 2017 -0500 Committer: Nick Couchman <[email protected]> Committed: Sat Jan 28 13:40:09 2017 -0500 ---------------------------------------------------------------------- .../src/main/java/org/apache/guacamole/token/StandardTokens.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/44a197c7/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java ---------------------------------------------------------------------- diff --git a/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java b/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java index 037e22c..9cb1f41 100644 --- a/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java +++ b/guacamole-ext/src/main/java/org/apache/guacamole/token/StandardTokens.java @@ -45,12 +45,12 @@ public class StandardTokens { /** * The name of the client token added via addStandardTokens(). */ - public static final String REMHOST_TOKEN = "GUAC_REMHOST"; + public static final String REMHOST_TOKEN = "GUAC_CLIENT_HOSTNAME"; /** * The IP of the client token added via addStandardTokens(). */ - public static final String REMIP_TOKEN = "GUAC_REMIP"; + public static final String REMIP_TOKEN = "GUAC_CLIENT_ADDRESS"; /** * The name of the date token (server-local time) added via
