jmuehlner commented on code in PR #455: URL: https://github.com/apache/guacamole-server/pull/455#discussion_r1303661707
########## src/libguac/guacamole/client-fntypes.h: ########## @@ -48,6 +50,16 @@ */ typedef int guac_client_free_handler(guac_client* client); +/** + * Handler that will run before immediately before pending users are promoted + * to full users. The pending user socket should be used to communicate to the + * pending users. + * + * @param client + * The client whose handler was invoked. + */ +typedef void guac_join_pending_handler(guac_client* client); Review Comment: Ok, I've added it. Currently there aren't any handlers that use it, but it's there. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
