GUACAMOLE-502: Do not send connection name / hostname (which may be internal information).

This commit is contained in:
Michael Jumper 2018-02-06 20:12:53 -08:00
parent 4d7191147c
commit 02cd424d18
2 changed files with 0 additions and 6 deletions

View File

@ -715,9 +715,6 @@ static int guac_rdp_handle_connection(guac_client* client) {
rdp_client->keyboard = guac_rdp_keyboard_alloc(client,
settings->server_layout);
/* Send connection name */
guac_protocol_send_name(client->socket, settings->hostname);
/* Set default pointer */
guac_common_cursor_set_pointer(rdp_client->display->cursor);

View File

@ -312,9 +312,6 @@ void* guac_vnc_client_thread(void* data) {
settings->recording_include_keys);
}
/* Send name */
guac_protocol_send_name(client->socket, rfb_client->desktopName);
/* Create display */
vnc_client->display = guac_common_display_alloc(client,
rfb_client->width, rfb_client->height);