23 #ifndef _GUAC_STREAM_H
24 #define _GUAC_STREAM_H
int guac_client_end_handler(guac_client *client, guac_stream *stream)
Handler for Guacamole stream end events.
Definition: client-fntypes.h:94
void * data
Arbitrary data associated with this stream.
Definition: stream.h:45
int guac_client_blob_handler(guac_client *client, guac_stream *stream, void *data, int length)
Handler for Guacamole stream blob events.
Definition: client-fntypes.h:82
guac_client_end_handler * end_handler
Handler for stream end events sent by the Guacamole web-client.
Definition: stream.h:109
guac_client_blob_handler * blob_handler
Handler for blob events sent by the Guacamole web-client.
Definition: stream.h:90
Type definitions related to Guacamole protocol streams.
int guac_client_ack_handler(guac_client *client, guac_stream *stream, char *error, guac_protocol_status status)
Handler for Guacamole stream ack events.
Definition: client-fntypes.h:88
Function type definitions related to the Guacamole client structure, guac_client. ...
Represents a single stream within the Guacamole protocol.
Definition: stream.h:35
int index
The index of this stream.
Definition: stream.h:40
guac_client_ack_handler * ack_handler
Handler for ack events sent by the Guacamole web-client.
Definition: stream.h:70