From cf471fa3f8b7aec3d44db4515536c78098a6011a Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Mon, 25 Jul 2005 00:19:33 +0000 Subject: Added modified Map, MapReader, ResourceManager classes and base64 functions from client to server. Nothing tested yet, just made sure it still compiled. --- src/connectionhandler.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/connectionhandler.cpp') diff --git a/src/connectionhandler.cpp b/src/connectionhandler.cpp index 6a46b94..2583e3f 100644 --- a/src/connectionhandler.cpp +++ b/src/connectionhandler.cpp @@ -144,8 +144,10 @@ ConnectionHandler::startListen(ListenThreadData *ltd) } // Check client sockets - std::list::iterator i; - for (i = clients.begin(); i != clients.end(); ) { + NetComputers::iterator i; + + for (i = clients.begin(); i != clients.end(); ) + { NetComputer *comp = *i; TCPsocket s = (*i)->getSocket(); -- cgit