aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-09-22 18:32:31 +0000
committerChristian Grothoff <christian@grothoff.org>2009-09-22 18:32:31 +0000
commitd62bacc863759d211988cd59d0f0849e378d2a61 (patch)
treecf3c8d27dcfd0e1efe51ce1d486fb9b248286768 /src/fs
parent5cfeaeaa6ea480fc0f0e47ccbfa450b9ca75bf21 (diff)
downloadgnunet-d62bacc863759d211988cd59d0f0849e378d2a61.tar.gz
gnunet-d62bacc863759d211988cd59d0f0849e378d2a61.zip
update
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-service-fs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fs/gnunet-service-fs.c b/src/fs/gnunet-service-fs.c
index b128b69a2..0c27f58b9 100644
--- a/src/fs/gnunet-service-fs.c
+++ b/src/fs/gnunet-service-fs.c
@@ -360,8 +360,7 @@ struct PendingReply
360 360
361 361
362/** 362/**
363 * All requests from a client are 363 * All requests from a client are kept in a doubly-linked list.
364 * kept in a doubly-linked list.
365 */ 364 */
366struct ClientRequestList; 365struct ClientRequestList;
367 366
@@ -514,8 +513,7 @@ struct PendingRequest
514 513
515 514
516/** 515/**
517 * All requests from a client are 516 * All requests from a client are kept in a doubly-linked list.
518 * kept in a doubly-linked list.
519 */ 517 */
520struct ClientRequestList 518struct ClientRequestList
521{ 519{
@@ -688,7 +686,9 @@ static struct ClientList *clients;
688static struct GNUNET_CONTAINER_Heap *requests_by_expiration; 686static struct GNUNET_CONTAINER_Heap *requests_by_expiration;
689 687
690/** 688/**
691 * FIXME: set from configuration. 689 * Maximum number of requests (from other peers) that we're
690 * willing to have pending at any given point in time.
691 * FIXME: set from configuration (and 32 is a tiny value for testing only).
692 */ 692 */
693static uint64_t max_pending_requests = 32; 693static uint64_t max_pending_requests = 32;
694 694