GUACAMOLE-1293: Add tunnel support for setting the name during client handshake.

This commit is contained in:
Virtually Nick
2021-12-25 21:19:05 -05:00
parent 3abecff0d1
commit 236164c6ec

View File

@@ -341,6 +341,11 @@ public class TunnelRequestService {
AuthenticatedUser authenticatedUser = session.getAuthenticatedUser(); AuthenticatedUser authenticatedUser = session.getAuthenticatedUser();
UserContext userContext = session.getUserContext(authProviderIdentifier); UserContext userContext = session.getUserContext(authProviderIdentifier);
// Attempt to get the username and set it for the tunnel client.
String name = authenticatedUser.getCredentials().getUsername();
if (name != null)
info.setName(name);
try { try {
// Create connected tunnel using provided connection ID and client information // Create connected tunnel using provided connection ID and client information