GUACAMOLE-337: Clarify behavior of guac_user_handle_connection().
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/b608d226 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/b608d226 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/b608d226 Branch: refs/heads/master Commit: b608d2266b35e20dc603dd2abbb7d676fcf50305 Parents: 6014117 Author: Michael Jumper <[email protected]> Authored: Wed Jul 5 19:54:06 2017 -0700 Committer: Michael Jumper <[email protected]> Committed: Wed Jul 5 19:54:06 2017 -0700 ---------------------------------------------------------------------- src/libguac/guacamole/user.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/b608d226/src/libguac/guacamole/user.h ---------------------------------------------------------------------- diff --git a/src/libguac/guacamole/user.h b/src/libguac/guacamole/user.h index b445f62..f89f807 100644 --- a/src/libguac/guacamole/user.h +++ b/src/libguac/guacamole/user.h @@ -493,12 +493,12 @@ guac_user* guac_user_alloc(); void guac_user_free(guac_user* user); /** - * Handles the portion of a user's Guacamole protocol handshake following the - * "select" instruction all subsequent I/O, automatically populating the - * handshake-related properties of the given guac_user and invoking - * guac_user_handle_instruction() for received instructions after the handshake - * has completed. This function blocks until the connection/user is aborted or - * the user disconnects. + * Handles all I/O for the portion of a user's Guacamole connection following + * the initial "select" instruction, including the rest of the handshake. The + * handshake-related properties of the given guac_user are automatically + * populated, and guac_user_handle_instruction() is invoked for all + * instructions received after the handshake has completed. This function + * blocks until the connection/user is aborted or the user disconnects. * * @param user * The user whose handshake and entire Guacamole protocol exchange should
