GUACAMOLE-33: Actually use VNC's leave handler.
Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/46b29edc Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/46b29edc Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/46b29edc Branch: refs/heads/master Commit: 46b29edc5f64d361a6d190b67425910423a7b3a9 Parents: 92e2f4e Author: Michael Jumper <[email protected]> Authored: Mon Apr 18 18:58:16 2016 -0700 Committer: Michael Jumper <[email protected]> Committed: Mon May 23 13:58:30 2016 -0700 ---------------------------------------------------------------------- src/protocols/vnc/client.c | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/46b29edc/src/protocols/vnc/client.c ---------------------------------------------------------------------- diff --git a/src/protocols/vnc/client.c b/src/protocols/vnc/client.c index 10391dd..f3840bb 100644 --- a/src/protocols/vnc/client.c +++ b/src/protocols/vnc/client.c @@ -52,6 +52,7 @@ int guac_client_init(guac_client* client) { /* Set handlers */ client->join_handler = guac_vnc_user_join_handler; + client->leave_handler = guac_vnc_user_leave_handler; client->free_handler = guac_vnc_client_free_handler; return 0;
