GUACAMOLE-249: Clean up documentation for arbitrary pipe SVC. No need to say "automatically" everywhere.

This commit is contained in:
Michael Jumper 2020-01-11 20:22:23 -08:00
parent 92d97a3244
commit 01c731e241

View File

@ -152,17 +152,17 @@ guac_rdp_pipe_svc* guac_rdp_pipe_svc_get(guac_client* client, const char* name);
guac_rdp_pipe_svc* guac_rdp_pipe_svc_remove(guac_client* client, const char* name); guac_rdp_pipe_svc* guac_rdp_pipe_svc_remove(guac_client* client, const char* name);
/** /**
* Handler for "blob" instructions which automatically writes received data to * Handler for "blob" instructions which writes received data to the associated
* the associated SVC using guac_rdp_pipe_svc_write(). * SVC using guac_rdp_pipe_svc_write().
*/ */
guac_user_blob_handler guac_rdp_pipe_svc_blob_handler; guac_user_blob_handler guac_rdp_pipe_svc_blob_handler;
/** /**
* Handler for "pipe" instructions which automatically prepares received pipe * Handler for "pipe" instructions which prepares received pipe streams to
* streams to automatically write received blobs to the SVC having the same * write received blobs to the SVC having the same name as the pipe stream.
* name as the pipe stream. Received pipe streams are associated with the * Received pipe streams are associated with the relevant guac_rdp_pipe_svc
* relevant guac_rdp_pipe_svc instance and the SVC-specific "blob" instruction * instance and the SVC-specific "blob" instruction handler
* handler (guac_rdp_pipe_svc_blob_handler). * (guac_rdp_pipe_svc_blob_handler).
*/ */
guac_user_pipe_handler guac_rdp_pipe_svc_pipe_handler; guac_user_pipe_handler guac_rdp_pipe_svc_pipe_handler;