char *cqlquery; // used for SRU targets only
int hits;
int record_offset;
- int setno;
int diagnostic;
enum client_state state;
struct show_raw *show_raw;
"Client_Working",
"Client_Error",
"Client_Failed",
- "Client_Disconnected",
- "Client_Stopped",
- "Client_Continue"
+ "Client_Disconnected"
};
static struct client *client_freelist = 0;
r->session = 0;
r->hits = 0;
r->record_offset = 0;
- r->setno = 0;
r->diagnostic = 0;
r->state = Client_Disconnected;
r->show_raw = 0;
int client_is_active(struct client *cl)
{
- if (cl->connection && (cl->state == Client_Continue ||
- cl->state == Client_Connecting ||
+ if (cl->connection && (cl->state == Client_Connecting ||
cl->state == Client_Working))
return 1;
return 0;