Removed client_set_requestid which is not in use.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 20 Oct 2008 19:36:42 +0000 (21:36 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 20 Oct 2008 19:36:42 +0000 (21:36 +0200)
src/client.c
src/client.h

index 43adcad..1acd2ea 100644 (file)
@@ -75,7 +75,6 @@ struct client {
     int hits;
     int record_offset;
     int setno;
-    int requestid;            // ID of current outstanding request
     int diagnostic;
     enum client_state state;
     struct show_raw *show_raw;
@@ -158,12 +157,6 @@ const char *client_get_pquery(struct client *cl)
     return cl->pquery;
 }
 
-void client_set_requestid(struct client *cl, int id)
-{
-    cl->requestid = id;
-}
-
-
 static void client_send_raw_present(struct client *cl);
 
 int client_show_raw_begin(struct client *cl, int position,
@@ -496,7 +489,6 @@ struct client *client_create(void)
     r->hits = 0;
     r->record_offset = 0;
     r->setno = 0;
-    r->requestid = -1;
     r->diagnostic = 0;
     r->state = Client_Disconnected;
     r->show_raw = 0;
index 207bf9d..d7cb149 100644 (file)
@@ -59,8 +59,6 @@ void client_set_database(struct client *cl, struct session_database *db);
 struct session *client_get_session(struct client *cl);
 const char *client_get_pquery(struct client *cl);
 
-void client_set_requestid(struct client *cl, int id);
-
 void client_init_response(struct client *cl, Z_APDU *a);
 void client_search_response(struct client *cl);
 void client_record_response(struct client *cl);