Hi all i want to enable the selection of the guacd based on connection parameters, as is already done with some auth extensions (eg . jdbc) according to the tutorial, the auth extension simply returns a map with the connection parameters: Map<String, GuacamoleConfiguration> https://guacamole.apache.org/doc/gug/custom-auth.html so far so fine.
then I saw that there is a simple connection class and a corresponding (old) pull request (#353) https://github.com/apache/guacamole-client/pull/353/commits/bbe957d0e8bb80d3aa6ee67b692d769ca6e152d0 which extends the simpleconnection class with the proxy parameters. (thanks nick) the idea now is to use this simpleconnection class from this pull request. can someone explain to me how i have to use this class then. or how / or what i have to return so that the proxy configuration is used by guacamole? on the other hand, wouldn't it be better if the guacamole main logic would use these parameters (proxy-host, proxy-port) from the map directly, instead of every auth plugin having to implement this? stefan
