aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-10-21 12:00:05 +0000
committerChristian Grothoff <christian@grothoff.org>2010-10-21 12:00:05 +0000
commit7e655d5542a9912e14e779915acef2791cfa55c7 (patch)
treea2871d809accd9f6fcee2e4be26800833a27953c /src/fs/fs.h
parent71db17bc50adc7c959838ca0bc9d5190c841e3c8 (diff)
downloadgnunet-7e655d5542a9912e14e779915acef2791cfa55c7.tar.gz
gnunet-7e655d5542a9912e14e779915acef2791cfa55c7.zip
more testcases, allow location uris in fs_download
Diffstat (limited to 'src/fs/fs.h')
-rw-r--r--src/fs/fs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/fs/fs.h b/src/fs/fs.h
index 9d662b267..68ed2184e 100644
--- a/src/fs/fs.h
+++ b/src/fs/fs.h
@@ -37,6 +37,18 @@
37 37
38/** 38/**
39 * Maximum number of outgoing messages we queue per peer. 39 * Maximum number of outgoing messages we queue per peer.
40 *
41 * Performance measurements for 2 peer setup for 50 MB file
42 * (with MAX_DATASTORE_QUEUE = 1 and RETRY_PROBABILITY_INV = 1):
43 *
44 * 2: 1700 kb/s, 1372 kb/s
45 * 8: 2117 kb/s, 1284 kb/s, 1112 kb/s
46 * 16: 3500 kb/s, 3200 kb/s, 3388 kb/s
47 * 32: 3441 kb/s, 3163 kb/s, 3277 kb/s
48 * 128: 1700 kb/s; 2010 kb/s, 3383 kb/s, 1156 kb/s
49 *
50 * Conclusion: 16 seems to be a pretty good value (stable
51 * and high performance, no excessive memory use).
40 */ 52 */
41#define MAX_QUEUE_PER_PEER 16 53#define MAX_QUEUE_PER_PEER 16
42 54