mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
469 B
34 lines
469 B
1 year ago
|
|
||
|
#include <thread>
|
||
|
|
||
|
#include "fuzzing.h"
|
||
|
|
||
|
|
||
|
static unsigned int counter = 0;
|
||
|
|
||
|
|
||
|
void
|
||
|
fuzzing_tick(void)
|
||
|
{
|
||
|
counter++;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
fuzzing_throttle(void)
|
||
|
{
|
||
|
unsigned int delay;
|
||
|
|
||
|
|
||
|
// Give queues time to drain (avoid OOM or crash)
|
||
|
// - Too high a delay slows down fuzzing
|
||
|
// - Too low a delay causes intermittent crash on exit
|
||
|
delay = 50 + (counter / 50);
|
||
|
counter = 0;
|
||
|
|
||
|
if(delay > 5000)
|
||
|
delay = 5000;
|
||
|
|
||
|
std::this_thread::sleep_for (std::chrono::milliseconds(delay));
|
||
|
}
|