From 1b3a914d5fdf5a578e24754845c6350c59c0b523 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 29 Sep 2009 18:12:59 +0200 Subject: Fixed some UserListManager-related bugs --- src/Common/ClientConnection.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Common') 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() { -- cgit v1.2.3