diff options
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/ClientConnection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Common/ClientConnection.cpp b/src/Common/ClientConnection.cpp index db6efb2..91327e2 100644 --- a/src/Common/ClientConnection.cpp +++ b/src/Common/ClientConnection.cpp @@ -26,6 +26,7 @@ namespace Common { ClientConnection::ClientConnection(Core::Application *application) : Connection(application), connection(Net::ClientConnection::create(application)) { connection->connectSignalReceive(boost::bind(&ClientConnection::receive, this, _1)); + connection->setReceiveLimit(0xFFFFFFFF); // TODO Authentication? } ClientConnection::~ClientConnection() { |