mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
manage netDb requests more frequently
This commit is contained in:
parent
02895d4cf5
commit
6592fab41c
2 changed files with 4 additions and 4 deletions
|
@ -21,9 +21,9 @@ namespace i2p
|
|||
namespace data
|
||||
{
|
||||
const size_t MAX_NUM_REQUEST_ATTEMPTS = 7;
|
||||
const uint64_t MANAGE_REQUESTS_INTERVAL = 15; // in seconds
|
||||
const uint64_t MANAGE_REQUESTS_INTERVAL = 1; // in seconds
|
||||
const uint64_t MIN_REQUEST_TIME = 5; // in seconds
|
||||
const uint64_t MAX_REQUEST_TIME = MAX_NUM_REQUEST_ATTEMPTS*MANAGE_REQUESTS_INTERVAL;
|
||||
const uint64_t MAX_REQUEST_TIME = MAX_NUM_REQUEST_ATTEMPTS * (MIN_REQUEST_TIME + MANAGE_REQUESTS_INTERVAL);
|
||||
|
||||
class RequestedDestination
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue