Skip to content

Commit

Permalink
fix: avoid double ips using dyndns
Browse files Browse the repository at this point in the history
  • Loading branch information
rejetto committed May 6, 2020
1 parent 994721b commit 9800eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ interface
MINUTES = HOURS*60;
SECONDS = MINUTES*60; // Tdatetime * SECONDS = time in seconds
ETA_FRAME = 5; // time frame for ETA (in seconds)
DOWNLOAD_MIN_REFRESH_TIME :Tdatetime = 1/(5*SECONDS); // 5 Hz
DOWNLOAD_MIN_REFRESH_TIME :Tdatetime = 1/3/SECONDS; // 3 Hz
BYTES_GROUPING_THRESHOLD :Tdatetime = 1/SECONDS; // group bytes in log
IPS_THRESHOLD = 50; // used to avoid an external file for few IPs (ipsEverConnected list)
STATUSBAR_REFRESH = 10; // tenth of second
Expand Down

0 comments on commit 9800eca

Please sign in to comment.