summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dht.c2
-rw-r--r--src/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dht.c b/src/dht.c
index 4e57e5e..d97b80b 100644
--- a/src/dht.c
+++ b/src/dht.c
@@ -794,7 +794,7 @@ struct dht * dht_init (const struct bencoding * c) {
#pragma GCC diagnostic pop
goto e;
}
-#define TOOMUCH 32727
+#define TOOMUCH (32727*1)
unsigned pinged = 0;
if (c) {
const struct bencoding * id = bpath(c, "id");
diff --git a/src/main.c b/src/main.c
index de21f7a..199bfab 100644
--- a/src/main.c
+++ b/src/main.c
@@ -48,7 +48,7 @@ void found_torrent (struct dht * d __attribute__((unused)), const unsigned char
t->ttl = seconds()+256;
t->type |= info | peers;
} else {
- if (last_added + 1 > seconds()) {
+ if (last_added + 2 > seconds()) {
L(debug, d, "not adding a torrent this fast");
return;
}