mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
Fix KEEP_ALIVE_DURATION value
I intended to specify 7 seconds, which should be 7000 milliseconds
This commit is contained in:
parent
c503583046
commit
8419ca87f9
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@
|
|||
|
||||
#include "connection.h"
|
||||
|
||||
static const int KEEP_ALIVE_DURATION = 7; // seconds
|
||||
static const int KEEP_ALIVE_DURATION = 7 * 1000; // milliseconds
|
||||
static const int CONNECTIONS_LIMIT = 500;
|
||||
static const int CONNECTIONS_SCAN_INTERVAL = 2; // seconds
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue