aleitner commented on code in PR #610: URL: https://github.com/apache/guacamole-server/pull/610#discussion_r2677707309
########## src/libguac/user-handlers.h: ########## @@ -231,6 +231,27 @@ __guac_instruction_handler __guac_handshake_name_handler; */ __guac_instruction_handler __guac_handshake_timezone_handler; +/** + * Internal initial handler for the usbconnect instruction. When a usbconnect + * instruction is received, this handler will be called. The client's + * usbconnect handler will be invoked if defined. + */ +__guac_instruction_handler __guac_handle_usbconnect; + +/** + * Internal initial handler for the usbdata instruction. When a usbdata + * instruction is received, this handler will be called. The client's + * usbdata handler will be invoked if defined. + */ +__guac_instruction_handler __guac_handle_usbdata; + +/** + * Internal initial handler for the usbdisconnect instruction. When a + * usbdisconnect instruction is received, this handler will be called. + * The client's usbdisconnect handler will be invoked if defined. Review Comment: Updated comment. ########## src/libguac/user-handlers.h: ########## @@ -231,6 +231,27 @@ __guac_instruction_handler __guac_handshake_name_handler; */ __guac_instruction_handler __guac_handshake_timezone_handler; +/** + * Internal initial handler for the usbconnect instruction. When a usbconnect + * instruction is received, this handler will be called. The client's + * usbconnect handler will be invoked if defined. + */ +__guac_instruction_handler __guac_handle_usbconnect; + +/** + * Internal initial handler for the usbdata instruction. When a usbdata + * instruction is received, this handler will be called. The client's Review Comment: Updated comment. ########## src/libguac/user-handlers.h: ########## @@ -231,6 +231,27 @@ __guac_instruction_handler __guac_handshake_name_handler; */ __guac_instruction_handler __guac_handshake_timezone_handler; +/** + * Internal initial handler for the usbconnect instruction. When a usbconnect + * instruction is received, this handler will be called. The client's Review Comment: Updated comment. -- 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]
