aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2011-01-21 16:24:07 +0000
committerNathan S. Evans <evans@in.tum.de>2011-01-21 16:24:07 +0000
commit3513fd310fa5642b99bff02f3535f9540c2e61a0 (patch)
tree3711905ddd2babd3634ed4683c2df50517008902 /src
parent607a2a4ed9ac96ae06c32eaaed203fb21e6c6176 (diff)
downloadgnunet-3513fd310fa5642b99bff02f3535f9540c2e61a0.tar.gz
gnunet-3513fd310fa5642b99bff02f3535f9540c2e61a0.zip
bump up even more
Diffstat (limited to 'src')
-rw-r--r--src/testing/testing_group.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/testing/testing_group.c b/src/testing/testing_group.c
index 5e5178ba6..da34a8e6e 100644
--- a/src/testing/testing_group.c
+++ b/src/testing/testing_group.c
@@ -51,17 +51,17 @@
51 */ 51 */
52#define HIGH_PORT 56000 52#define HIGH_PORT 56000
53 53
54#define MAX_OUTSTANDING_CONNECTIONS 100 54#define MAX_OUTSTANDING_CONNECTIONS 200
55 55
56#define MAX_CONCURRENT_HOSTKEYS 100 56#define MAX_CONCURRENT_HOSTKEYS 200
57 57
58#define MAX_CONCURRENT_STARTING 100 58#define MAX_CONCURRENT_STARTING 200
59 59
60#define MAX_CONCURRENT_SHUTDOWN 100 60#define MAX_CONCURRENT_SHUTDOWN 100
61 61
62#define CONNECT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 45) 62#define CONNECT_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 180)
63 63
64#define CONNECT_ATTEMPTS 21 64#define CONNECT_ATTEMPTS 30
65 65
66/** 66/**
67 * Prototype of a function called whenever two peers would be connected 67 * Prototype of a function called whenever two peers would be connected
@@ -2207,7 +2207,6 @@ create_from_file (struct GNUNET_TESTING_PeerGroup *pg,
2207 GNUNET_free_non_null(data); 2207 GNUNET_free_non_null(data);
2208 return connect_attempts; 2208 return connect_attempts;
2209 } 2209 }
2210 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read next peer index %u\n", first_peer_index);
2211 while((buf[count] != ':') && (count < frstat.st_size - 1)) 2210 while((buf[count] != ':') && (count < frstat.st_size - 1))
2212 count++; 2211 count++;
2213 count++; 2212 count++;
@@ -2225,7 +2224,6 @@ create_from_file (struct GNUNET_TESTING_PeerGroup *pg,
2225 GNUNET_free_non_null(data); 2224 GNUNET_free_non_null(data);
2226 return connect_attempts; 2225 return connect_attempts;
2227 } 2226 }
2228 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read second peer index %u\n", second_peer_index);
2229 /* Assume file is written with first peer 1, but array index is 0 */ 2227 /* Assume file is written with first peer 1, but array index is 0 */
2230 connect_attempts += proc (pg, first_peer_index - 1, second_peer_index - 1); 2228 connect_attempts += proc (pg, first_peer_index - 1, second_peer_index - 1);
2231 while((buf[count] != '\n') && (buf[count] != ',') && (count < frstat.st_size - 1)) 2229 while((buf[count] != '\n') && (buf[count] != ',') && (count < frstat.st_size - 1))