Increased ssl error rate limit from 50k to 100k #4650

@speaker This is nuts... my mac client now errors 50k times before it
eventually connects.
This commit is contained in:
Nick Bolton 2015-05-26 14:14:24 +01:00
parent 3dc3d5b309
commit 42ed1c2f27
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@
enum {
// this limit seems extremely high, but mac client seem to generate around
// 20,000 errors before they establish a connection (wtf?)
kMaxRetryCount = 50000
// 50,000 errors before they establish a connection (wtf?)
kMaxRetryCount = 100000
};
static const char kFingerprintDirName[] = "SSL/Fingerprints";