Browse Source

Comments

master
Con Kolivas 10 years ago
parent
commit
0dafbe12b4
  1. 5
      src/connector.c

5
src/connector.c

@ -61,6 +61,7 @@ struct client_instance {
/* Is this the parent passthrough client */ /* Is this the parent passthrough client */
bool passthrough; bool passthrough;
/* Linked list of shares in redirector mode.*/
share_t *shares; share_t *shares;
}; };
@ -369,7 +370,9 @@ static int invalidate_client(ckpool_t *ckp, cdata_t *cdata, client_instance_t *c
static void send_client(cdata_t *cdata, int64_t id, char *buf); static void send_client(cdata_t *cdata, int64_t id, char *buf);
/* Look for shares being submitted via a redirector and add them to a linked /* Look for shares being submitted via a redirector and add them to a linked
* list for looking up the responses */ * list for looking up the responses. Theoretically this could leak shares but
* we should only ever store one share before redirecting active clients unless
* they don't support redirection. */
static void parse_redirector_share(client_instance_t *client, const char *msg, const json_t *val) static void parse_redirector_share(client_instance_t *client, const char *msg, const json_t *val)
{ {
share_t *share, *tmp; share_t *share, *tmp;

Loading…
Cancel
Save