From 6429aaf47396e05da0a50e16ed9f61f4a048c18f Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sun, 25 Mar 2012 21:49:58 -0700 Subject: [PATCH] Send name after connect. --- src/client.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client.c b/src/client.c index e45c5cc..e6a028b 100644 --- a/src/client.c +++ b/src/client.c @@ -389,6 +389,9 @@ int guac_client_init(guac_client* client, int argc, char** argv) { return 1; } + /* Send connection name */ + guac_protocol_send_name(client->socket, settings->window_title); + /* Success */ return 0; -- 1.7.10.4