GUAC-1389: Remove tracking of input pipe (there may be many).

This commit is contained in:
Michael Jumper 2016-03-04 14:35:45 -08:00
parent d2ca12e88b
commit 9191e264f8
3 changed files with 0 additions and 8 deletions

View File

@ -157,7 +157,6 @@ int guac_rdp_svc_pipe_handler(guac_user* user, guac_stream* stream,
stream->blob_handler = guac_rdp_svc_blob_handler; stream->blob_handler = guac_rdp_svc_blob_handler;
rdp_stream->type = GUAC_RDP_INBOUND_SVC_STREAM; rdp_stream->type = GUAC_RDP_INBOUND_SVC_STREAM;
rdp_stream->svc = svc; rdp_stream->svc = svc;
svc->input_pipe = stream;
return 0; return 0;

View File

@ -45,7 +45,6 @@ guac_rdp_svc* guac_rdp_alloc_svc(guac_client* client, char* name) {
/* Init SVC */ /* Init SVC */
svc->client = client; svc->client = client;
svc->plugin = NULL; svc->plugin = NULL;
svc->input_pipe = NULL;
svc->output_pipe = NULL; svc->output_pipe = NULL;
/* Warn about name length */ /* Warn about name length */

View File

@ -55,12 +55,6 @@ typedef struct guac_rdp_svc {
*/ */
char name[GUAC_RDP_SVC_MAX_LENGTH+1]; char name[GUAC_RDP_SVC_MAX_LENGTH+1];
/**
* The pipe opened by the Guacamole client, if any. This should be
* opened in response to the output pipe.
*/
guac_stream* input_pipe;
/** /**
* The output pipe, opened when the RDP server receives a connection to * The output pipe, opened when the RDP server receives a connection to
* the static channel. * the static channel.