Change max connections to 16

This commit is contained in:
jl777
2018-11-24 03:23:16 -11:00
parent c962afe420
commit 6855c277d8
2 changed files with 3 additions and 3 deletions

View File

@@ -48,8 +48,8 @@
using namespace std;
namespace {
const int MAX_OUTBOUND_CONNECTIONS = 4;
const int MAX_INBOUND_FROMIP = 3;
const int MAX_OUTBOUND_CONNECTIONS = 16;
const int MAX_INBOUND_FROMIP = 5;
struct ListenSocket {
SOCKET socket;