GUAC-1389: Remove tracking of input pipe (there may be many).
This commit is contained in:
parent
d2ca12e88b
commit
9191e264f8
@ -157,7 +157,6 @@ int guac_rdp_svc_pipe_handler(guac_user* user, guac_stream* stream,
|
||||
stream->blob_handler = guac_rdp_svc_blob_handler;
|
||||
rdp_stream->type = GUAC_RDP_INBOUND_SVC_STREAM;
|
||||
rdp_stream->svc = svc;
|
||||
svc->input_pipe = stream;
|
||||
|
||||
return 0;
|
||||
|
||||
|
@ -45,7 +45,6 @@ guac_rdp_svc* guac_rdp_alloc_svc(guac_client* client, char* name) {
|
||||
/* Init SVC */
|
||||
svc->client = client;
|
||||
svc->plugin = NULL;
|
||||
svc->input_pipe = NULL;
|
||||
svc->output_pipe = NULL;
|
||||
|
||||
/* Warn about name length */
|
||||
|
@ -55,12 +55,6 @@ typedef struct guac_rdp_svc {
|
||||
*/
|
||||
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 static channel.
|
||||
|
Loading…
Reference in New Issue
Block a user