Merge pull request #5788 from birarda/master

make node timeout less brittle (by giving it more time)
This commit is contained in:
Ryan Huffman 2015-09-11 16:59:04 -07:00
commit 2bb633d370
5 changed files with 20 additions and 20 deletions

View file

@ -43,7 +43,7 @@
#include "udt/Socket.h" #include "udt/Socket.h"
#include "UUIDHasher.h" #include "UUIDHasher.h"
const quint64 NODE_SILENCE_THRESHOLD_MSECS = 2 * 1000; const quint64 NODE_SILENCE_THRESHOLD_MSECS = 5 * 1000;
extern const char SOLO_NODE_TYPES[2]; extern const char SOLO_NODE_TYPES[2];

View file

@ -25,7 +25,7 @@
#include "CongestionControl.h" #include "CongestionControl.h"
#include "Connection.h" #include "Connection.h"
#define UDT_CONNECTION_DEBUG //#define UDT_CONNECTION_DEBUG
class UDTTest; class UDTTest;