Add: client_get_maxrecs
authorDennis Schafroth <dennis@indexdata.com>
Wed, 29 Dec 2010 22:36:51 +0000 (23:36 +0100)
committerDennis Schafroth <dennis@indexdata.com>
Wed, 29 Dec 2010 22:36:51 +0000 (23:36 +0100)
src/client.c
src/client.h

index fad815c..b2d16b1 100644 (file)
@@ -1064,6 +1064,11 @@ void client_set_maxrecs(struct client *cl, int v)
     cl->maxrecs = v;
 }
 
+int client_get_maxrecs(struct client *cl)
+{
+    return cl->maxrecs;
+}
+
 void client_set_startrecs(struct client *cl, int v)
 {
     cl->startrecs = v;
index 88d46c1..c0b1442 100644 (file)
@@ -89,6 +89,7 @@ void client_set_database(struct client *cl, struct session_database *db);
 struct host *client_get_host(struct client *cl);
 const char *client_get_url(struct client *cl);
 void client_set_maxrecs(struct client *cl, int v);
+int  client_get_maxrecs(struct client *cl);
 void client_set_startrecs(struct client *cl, int v);
 void client_remove_from_session(struct client *c);
 void client_incref(struct client *c);