tkuhlengel commented on code in PR #1117: URL: https://github.com/apache/guacamole-client/pull/1117#discussion_r2353876009
########## guacamole/src/main/java/org/apache/guacamole/GuacamoleSession.java: ########## @@ -61,6 +62,11 @@ public class GuacamoleSession { */ private final Map<String, UserTunnel> tunnels = new ConcurrentHashMap<>(); + /** + * Creation times for all tunnels, indexed by tunnel UUID. + */ + private final Map<String, Long> tunnelCreationTimes = new ConcurrentHashMap<>(); + Review Comment: I'm okay with changing it to use the GuacamoleTunnel as backing for the creation time. I just need a hint on how to iterate through the currently open connections/Tunnels -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org