Closed albertz closed 13 years ago
Submitted by albertzeyer
Btw, I set the cache limit to zero and always have very low cache usage:
n: Current cache size: 6 MB
(This is the last info printed about the cache before OLX was killed.)
Submitted by albertzeyer
Hey, I just browser through the Valgrind docs to read about the other tools, and it exactly has such a tool we need here:
http://valgrind.org/docs/manual/ms-manual.html
(Btw., it also has tools for threads-error-checks like if we do locking in the correct order and all that stuff.)
Submitted by albertzeyer
After less than 9 hours of runtime, OLX takes about 3GB of memory. This is a serious problem.
Submitted by albertzeyer
Btw., it seems that OLX only has reported the cache size twice in the whole log (in 9h runtime). Seems also not correct to me, not sure if that is related...
Submitted by dark_charlie
According to Memory Validator, majority of the memory (91 %) is occupied by MemberFunction<_Base, _Data>. I guess something is wrong there. Also MSVC reports leaks from time to time there (but it's quite random).
Submitted by albertzeyer
I never have seen leaks there whereby I am not sure if I have ever checked OLX as non-dedicated with Valgrind (because it's pretty much non-playable).
Anyway: MemberFunction should only be used for the event-system (as possible callbacks to member functions) as far as I remember. It always look like event.handler() = new MemberFunction(...). The event itself should do the cleanup/delete of the MemberFunction at the end. Perhaps, with the new code for copying events (and their callbacks and current occurances in event queue), we have forgotten to handle some cases correct.
Submitted by pelya
if(!bDedicated) { // Get all SDL events and push them to our event queue. // We have to do that in the same thread where we inited the video because of SDL. SDL_Event ev; memset( &ev, 0, sizeof(ev) ); while(true) { while( SDL_WaitEvent(&ev) ) { if(ev.type == SDL_USEREVENT) { switch(ev.user.code) { case UE_QuitEventThread: goto quit; case UE_DoVideoFrame: videoHandler.frame(); continue; case UE_DoSetVideoMode: videoHandler.setVideoMode(); continue; case UEDoActionInMainThread: ((Action)ev.user.data1)->handle(); delete (Action_)ev.user.data1; continue; } } if( ev.type == SDL_SYSWMEVENT ) { EvHndl_SysWmEvent_MainThread( &ev ); continue; } mainQueue->push(ev); }
notes << "error while waiting for next event" << endl; SDL_Delay(200); }
So, if some thread pushes UE_DoActionInMainThread or just calls doActionInMainThread(), the data is never deleted in dedicated mode, but is deleted in normal mode. I think that is the cause.
Submitted by albertzeyer
Didn't looked at the code (no time right now), but can you verify that?
doActionInMainThread() should be the only function who pushes UE_DoActionInMainThread. doActionInMainThread() in dedicated mode pushes the event instead to the game thread and gives a warning.
Submitted by pelya
False alarm, doActionInMainThread() is used only from user notification and clipboard code, which is disabled in dedicated mode. I'll try to run ded server with valgrind and kill it after some time to get trace of all allocated memory.
Submitted by pelya
I've run ded server under valgrind for 16 or so hours, with cache enabled, the process grew from 500 mb to 800 mb, then I've killed it with SIGHUP so valgrind terminated OLX and showed run-time memory layout. Nothing unusual in the logs though, maybe because ded server is so slow that noone wants to join it. I'll make another test with cache disabled.
Submitted by albertzeyer
I also have a dedicated server running for two weeks or something now but almost nobody ever joins it (btw., don't understand really why that is? I disabled bots, so it's empty if there is no other worm, perhaps that is the reason? or any problems? nobody reported anything).
It seems, just staying in lobby, or at least only some very few games don't result in that problem. It's probably a leak comming with each new game.
Btw., I have much different memory usage. I have ~100 MB in the beginning and earlier (and also now) it grows to 150-200 MB or something (200 MB was also my hard limit on the server). Now it grows to 1GB or more and then quits (because swap and everything is full). (Also tried that on my other computer, where I have 6 GB, and also that got full.) I all the time have cache disabled and cache also only reports about 20 MB or something max.
Submitted by pelya
I've joined your ded server with a worm and a bot, it wrote "Game will start in 15 seconds" and never started, though !help command worked, showing that ded script was still running. Also !map command responded to me "Invalid user command", although it was shown in !help and was working before, when I've implemented it.
Submitted by albertzeyer
Indeed, a lot of strange things. Not sure if there are perhaps even multiple problems/bugs:
H: Worm left: [RIP] Adam (id 0): removed client (dropped client (client disconnected)) n: GameServer: Got a traverse from client 88.112.94.238:23400 E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x16c) [0x8309ca8] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: WriteSocket: Socket is not valid. backtrace() returned 21 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z11WriteSocket13NetworkSocketPKvi+0x61) [0x82a5445] ../../bin/openlierox(_ZN11CBytestream4SendE13NetworkSocket+0x34) [0x82d5534] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x690) [0x830a1cc] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: A NAT traverse connection timed out: 88.112.94.238:23400 H: Worm joined: [RIP] pelya (id 0, from 195.238.92.124:2948(OpenLieroX/0.57_beta9_r4650)) E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] H: Worm joined: CPU 1 (id 1, from 195.238.92.163:4513(OpenLieroX/0.57_beta9_r4650)) E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: GameServer: Got a traverse from client 88.112.94.238:23400 E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x13c) [0x8309c78] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x16c) [0x8309ca8] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: Could not open a new socket for a client connecting via NAT traversal: Too many open files. backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x217) [0x8309d53] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: CHAT: [RIP] pelya: !help H: DedicatedControl: message: 2009-06-24 16:22:54 -- USERCOMMAND -- 0:[RIP] pelya issued help n: Registering server at thelobby.altervista.org/server n: Registering server at lieroxtreme.thegaminguniverse.com/server E: ReadSocket: Bad file descriptor. backtrace() returned 13 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z10ReadSocket13NetworkSocketPvi+0x71) [0x82a6aed] ../../bin/openlierox(_ZN5CHttp18ReadAndProcessDataEv+0x3f) [0x82bff15] ../../bin/openlierox(_ZN5CHttp10ProcessGETEv+0x101) [0x82c051d] ../../bin/openlierox(_ZN5CHttp15ProcessInternalEv+0x942) [0x82c0e9e] ../../bin/openlierox(_ZN10HttpThread3runEv+0x1c) [0x82c4320] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() n: CHAT: CPU 1: !help H: DedicatedControl: message: 2009-06-24 16:23:16 -- USERCOMMAND -- 1:CPU 1 issued help n: CHAT: [RIP] pelya: !map MsPa H: DedicatedControl: message: 2009-06-24 16:23:28 -- USERCOMMAND -- 0:[RIP] pelya issued map H: Script Dedicated: 1 param needed, usage: msg text n: GameServer: Got a traverse from client 88.112.94.238:23400 E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x16c) [0x8309ca8] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: WriteSocket: Socket is not valid. backtrace() returned 21 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z11WriteSocket13NetworkSocketPKvi+0x61) [0x82a5445] ../../bin/openlierox(_ZN11CBytestream4SendE13NetworkSocket+0x34) [0x82d5534] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x690) [0x830a1cc] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: A NAT traverse connection timed out: 88.112.94.238:23400 n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() H: Worm joined: The Chosen One (id 2, from 85.19.144.113:21142(OpenLieroX/0.57_beta5)) E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: CHAT: The Chosen One: hey ;) n: GameServer: Got a traverse from client 88.112.94.238:23400 E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x13c) [0x8309c78] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x16c) [0x8309ca8] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: Could not open a new socket for a client connecting via NAT traversal: Too many open files. backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x217) [0x8309d53] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() n: CHAT: [RIP] pelya: The games here never start :( n: CHAT: [RIP] pelya: This server is filure H: Worm left: The Chosen One (id 2): removed client (dropped client (timeout)) H: Worm left: [RIP] pelya (id 0): removed client (dropped client (client disconnected)) n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() H: Worm joined: Mani (id 0, from 91.115.103.98:61925(OpenLieroX/0.57_beta5)) E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] H: Worm left: Mani (id 0): removed client (dropped client (client disconnected)) n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() n: Registering server at thelobby.altervista.org/server n: Registering server at lieroxtreme.thegaminguniverse.com/server n: Registering on UDP masterserver server.az2000.de:23450 n: Registering on UDP masterserver ms.olx.dailyupload.net:23450 n: GameServer::ParseServerRegistered() n: GameServer::ParseServerRegistered() n: GameServer: Got a traverse from client 88.112.94.238:23400 E: OpenUnreliableSocket: Too many open files. backtrace() returned 20 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z20OpenUnreliableSockettb+0x85) [0x82a6197] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x16c) [0x8309ca8] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: WriteSocket: Socket is not valid. backtrace() returned 21 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_Z11WriteSocket13NetworkSocketPKvi+0x61) [0x82a5445] ../../bin/openlierox(_ZN11CBytestream4SendE13NetworkSocket+0x34) [0x82d5534] ../../bin/openlierox(_ZN10GameServer13ParseTraverseE13NetworkSocketP11CBytestreamRKSs+0x690) [0x830a1cc] ../../bin/openlierox(_ZN10GameServer25ParseConnectionlessPacketE13NetworkSocketP11CBytestreamRKSs+0x232) [0x830e728] ../../bin/openlierox(_ZN10GameServer21ReadPacketsFromSocketER13NetworkSocket+0x135) [0x82f07ef] ../../bin/openlierox(_ZN10GameServer11ReadPacketsEv+0x28) [0x82f0a40] ../../bin/openlierox(_ZN10GameServer5FrameEv+0x11e) [0x82f49c8] ../../bin/openlierox(_ZN9DedIntern17Frame_ServerLobbyEv+0x16) [0x8317eb6] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] H: Worm joined: Mani (id 0, from 91.115.103.98:62025(OpenLieroX/0.57_beta5)) E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] W: CClientNetEngine::ParseWormInfo(): ChangeGraphics() failed backtrace() returned 17 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x27a) [0x814b612] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0xb7bb309e] E: CWorm::ChangeGraphics: Could not load image data/gfx/giblets.png backtrace() returned 19 addresses ../../bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x82e4553] ../../bin/openlierox(_ZN6Logger5flushEv+0x111) [0x82e46c7] ../../bin/openlierox(_Z4endlR6Logger+0x23) [0x8142541] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsERKSsb+0x94) [0x82b663c] ../../bin/openlierox(_ZN5CWorm14ChangeGraphicsEi+0x6a) [0x82b8750] ../../bin/openlierox(_ZN16CClientNetEngine13ParseWormInfoEP11CBytestream+0x252) [0x814b5ea] ../../bin/openlierox(_ZN16CClientNetEngine11ParsePacketEP11CBytestream+0x82) [0x814f48c] ../../bin/openlierox(_ZN7CClient11ReadPacketsEv+0xfb) [0x815d2e9] ../../bin/openlierox(_ZN7CClient5FrameEv+0x38) [0x815edd8] ../../bin/openlierox(_ZN9DedIntern11Frame_BasicEv+0xf9) [0x8318251] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_FrameEv+0x29) [0x81f0853] ../../bin/openlierox(_ZN13DeprecatedGUI9Menu_LoopEv+0x4b) [0x81f0af7] ../../bin/openlierox(_ZN13DeprecatedGUI10Menu_StartEv+0x9f) [0x81f0c4b] ../../bin/openlierox [0x81401f2] ../../bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0xd5) [0x8285bab] /usr/lib/libSDL-1.2.so.0 [0xb7ebdb8b] /usr/lib/libSDL-1.2.so.0 [0xb7ee43fd] /lib/libpthread.so.0 [0xb7e8218b] /lib/libc.so.6(clone+0x5e) [0az@server ~/Programmierung/openlierox $
Check these:
"ChangeGraphics() failed" <- could be memory problem, i.e. memory full? "E: WriteSocket: Socket is not valid." <- should never happen "E: OpenUnreliableSocket: Too many open files." <- wtf? did we forgot to close a file? or close a socket? would that explain the memory problems?
Submitted by albertzeyer
Ok, I think I found one related problem:
az@server ~ $ lsof -p 16153 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME openliero 16153 az cwd DIR 3,4 1432 5050061 /home/az/Programmierung/openlierox/share/gamedir openliero 16153 az rtd DIR 3,4 744 2 / openliero 16153 az txt REG 3,4 40331696 5911103 /home/az/Programmierung/openlierox/bin/openlierox openliero 16153 az mem REG 3,4 17808 5423062 /lib/libnss_dns-2.6.1.so openliero 16153 az mem REG 3,4 63232 5422983 /lib/libresolv-2.6.1.so openliero 16153 az mem REG 3,4 9612 5423134 /lib/libdl-2.6.1.so openliero 16153 az mem REG 3,4 1237276 5422982 /lib/libc-2.6.1.so openliero 16153 az mem REG 3,4 42348 5165607 /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/libgcc_s.so.1 openliero 16153 az mem REG 3,4 149256 5423132 /lib/libm-2.6.1.so openliero 16153 az mem REG 3,4 921376 5165667 /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/libstdc++.so.6.0.8 openliero 16153 az mem REG 3,4 38448 5682851 /usr/lib/libzip.so.1.0.0 openliero 16153 az mem REG 3,4 70488 4083035 /lib/libz.so.1.2.3 openliero 16153 az mem REG 3,4 1188348 5820268 /usr/lib/libxml2.so.2.7.2 openliero 16153 az mem REG 3,4 118677 5421701 /lib/libpthread-2.6.1.so openliero 16153 az mem REG 3,4 46476 5065375 /usr/lib/libSDL_image-1.2.so.0.1.4 openliero 16153 az mem REG 3,4 239640 5383432 /usr/lib/libSDL-1.2.so.0.11.2 openliero 16153 az mem REG 3,4 34244 5422962 /lib/libnss_files-2.6.1.so openliero 16153 az mem REG 3,4 108996 5423154 /lib/ld-2.6.1.so openliero 16153 az 0u CHR 136,2 0t0 4 /dev/pts/2 openliero 16153 az 1w REG 3,4 139321344 203638 /home/az/Programmierung/openlierox/olx.log openliero 16153 az 2w REG 3,4 139321344 203638 /home/az/Programmierung/openlierox/olx.log openliero 16153 az 3r REG 3,4 6177025 5533963 /home/az/Programmierung/openlierox/share/gamedir/ip_to_country.csv openliero 16153 az 4u IPv4 1242982 0t0 UDP :44549 openliero 16153 az 5u IPv4 1242723 0t0 UDP :23400 openliero 16153 az 6u IPv4 1242724 0t0 UDP :38027 openliero 16153 az 7w FIFO 0,5 0t0 1242688 pipe openliero 16153 az 8r FIFO 0,5 0t0 1242689 pipe openliero 16153 az 9u IPv4 1242725 0t0 UDP :35578 openliero 16153 az 10u IPv4 1242726 0t0 UDP :35875 openliero 16153 az 11r REG 3,4 138 5324546 /home/az/Programmierung/openlierox/share/gamedir/cfg/downloadservers.txt openliero 16153 az 13u IPv4 1242729 0t0 UDP :37676 openliero 16153 az 14u IPv4 1242983 0t0 UDP :60157 openliero 16153 az 15u IPv4 1243540 0t0 UDP :53185 openliero 16153 az 16u IPv4 1245185 0t0 UDP :53900 openliero 16153 az 17u IPv4 1245619 0t0 UDP :48171 openliero 16153 az 18u IPv4 1245620 0t0 UDP :60356 openliero 16153 az 19u IPv4 1245621 0t0 UDP :58630 openliero 16153 az 20u IPv4 1246081 0t0 UDP :39566 openliero 16153 az 21u IPv4 1250351 0t0 UDP :40045 openliero 16153 az 22u IPv4 1248521 0t0 UDP :35027 openliero 16153 az 23u IPv4 1268173 0t0 UDP :40308 openliero 16153 az 24u IPv4 1250425 0t0 UDP :38636 openliero 16153 az 25u IPv4 1250426 0t0 UDP :39810 openliero 16153 az 26u IPv4 1250434 0t0 UDP :57143 openliero 16153 az 27u IPv4 1250435 0t0 UDP :59087 openliero 16153 az 28u IPv4 1250444 0t0 UDP :60219 openliero 16153 az 29u IPv4 1250445 0t0 UDP :51855 openliero 16153 az 30u IPv4 1250459 0t0 UDP :57962 openliero 16153 az 31u IPv4 1250460 0t0 UDP :35702 openliero 16153 az 32u IPv4 1250717 0t0 UDP :41151 openliero 16153 az 33u IPv4 1250731 0t0 UDP :54577 openliero 16153 az 34u IPv4 1250732 0t0 UDP :45846 openliero 16153 az 35u IPv4 1250783 0t0 UDP :44301 openliero 16153 az 36u IPv4 1250784 0t0 UDP :55150 openliero 16153 az 37u IPv4 1250785 0t0 UDP :37145 openliero 16153 az 38u IPv4 1250786 0t0 UDP :60791 openliero 16153 az 39u IPv4 1251294 0t0 UDP :37067 openliero 16153 az 40u IPv4 1251299 0t0 UDP :38805 openliero 16153 az 41u IPv4 1251314 0t0 UDP :51768 openliero 16153 az 42u IPv4 1251315 0t0 UDP :40605 openliero 16153 az 43u IPv4 1251325 0t0 UDP :44304 openliero 16153 az 44u IPv4 1251326 0t0 UDP :36642 openliero 16153 az 45u IPv4 1251327 0t0 UDP :54885 openliero 16153 az 46u IPv4 1251328 0t0 UDP :57852 openliero 16153 az 47u IPv4 1251329 0t0 UDP :41542 openliero 16153 az 48u IPv4 1251330 0t0 UDP :42674 openliero 16153 az 49u IPv4 1251331 0t0 UDP :57475 openliero 16153 az 50u IPv4 1251332 0t0 UDP :55300 openliero 16153 az 51u IPv4 1251333 0t0 UDP :53056 openliero 16153 az 52u IPv4 1251334 0t0 UDP :57080 openliero 16153 az 53u IPv4 1251335 0t0 UDP :51528 openliero 16153 az 54u IPv4 1251336 0t0 UDP :38300 openliero 16153 az 55u IPv4 1251853 0t0 UDP :51686 openliero 16153 az 56u IPv4 1252156 0t0 UDP :54180 openliero 16153 az 57u IPv4 1252170 0t0 UDP :39094 openliero 16153 az 58u IPv4 1252171 0t0 UDP :45959 openliero 16153 az 59u IPv4 1252172 0t0 UDP :46055 openliero 16153 az 60u IPv4 1252173 0t0 UDP :37999 openliero 16153 az 61u IPv4 1252500 0t0 UDP :57951 openliero 16153 az 62u IPv4 1252760 0t0 UDP :33904 openliero 16153 az 63u IPv4 1252761 0t0 UDP :53833 openliero 16153 az 64u IPv4 1252845 0t0 UDP :48444 openliero 16153 az 65u IPv4 1252846 0t0 UDP :45915 openliero 16153 az 66u IPv4 1252849 0t0 UDP :55337 openliero 16153 az 67u IPv4 1252850 0t0 UDP :46556 openliero 16153 az 68u IPv4 1253457 0t0 UDP :51498 openliero 16153 az 69u IPv4 1255407 0t0 UDP :58030 openliero 16153 az 70u IPv4 1255525 0t0 UDP :44273 openliero 16153 az 71u IPv4 1255553 0t0 UDP :51065 openliero 16153 az 72u IPv4 1255554 0t0 UDP :57086 openliero 16153 az 73u IPv4 1255737 0t0 UDP :54039 openliero 16153 az 74u IPv4 1255841 0t0 UDP :32861 openliero 16153 az 75u IPv4 1255842 0t0 UDP :42058 openliero 16153 az 76u IPv4 1257349 0t0 UDP :56026 openliero 16153 az 77u IPv4 1257946 0t0 UDP :40889 openliero 16153 az 78u IPv4 1257960 0t0 UDP :48800 openliero 16153 az 79u IPv4 1257961 0t0 UDP :51742 openliero 16153 az 80u IPv4 1258101 0t0 UDP :54714 openliero 16153 az 81u IPv4 1258102 0t0 UDP :43668 openliero 16153 az 82u IPv4 1258135 0t0 UDP :56059 openliero 16153 az 83u IPv4 1258136 0t0 UDP :58751 openliero 16153 az 84u IPv4 1258485 0t0 UDP :40514 openliero 16153 az 85u IPv4 1258505 0t0 UDP :60787 openliero 16153 az 86u IPv4 1258506 0t0 UDP :58248 openliero 16153 az 87u IPv4 1258684 0t0 UDP :33001 openliero 16153 az 88u IPv4 1258979 0t0 UDP :36520 openliero 16153 az 89u IPv4 1259565 0t0 UDP :54727 openliero 16153 az 90u IPv4 1259792 0t0 UDP :36369 openliero 16153 az 91u IPv4 1259794 0t0 UDP :37151 openliero 16153 az 92u IPv4 1259795 0t0 UDP :51646 openliero 16153 az 93u IPv4 1259894 0t0 UDP :59084 openliero 16153 az 94u IPv4 1259910 0t0 UDP :45389 openliero 16153 az 95u IPv4 1259911 0t0 UDP :43069 openliero 16153 az 96u IPv4 1259934 0t0 UDP :46767 openliero 16153 az 97u IPv4 1259935 0t0 UDP :60544 openliero 16153 az 98u IPv4 1260425 0t0 UDP :45601 openliero 16153 az 99u IPv4 1260440 0t0 UDP :48848 openliero 16153 az 100u IPv4 1260441 0t0 UDP :40705 openliero 16153 az 101u IPv4 1260571 0t0 UDP :60562 openliero 16153 az 102u IPv4 1261488 0t0 UDP :33701 openliero 16153 az 103u IPv4 1261503 0t0 UDP :54990 openliero 16153 az 104u IPv4 1261504 0t0 UDP :42541 openliero 16153 az 105u IPv4 1261727 0t0 UDP :45203 openliero 16153 az 106u IPv4 1261728 0t0 UDP :48864 openliero 16153 az 107u IPv4 1262228 0t0 UDP :46677 openliero 16153 az 108u IPv4 1262998 0t0 UDP :53874 openliero 16153 az 109u IPv4 1263645 0t0 UDP :53976 openliero 16153 az 110u IPv4 1263723 0t0 UDP :42544 openliero 16153 az 111u IPv4 1263724 0t0 UDP :34598 openliero 16153 az 112u IPv4 1263748 0t0 UDP :34456 openliero 16153 az 113u IPv4 1263749 0t0 UDP :37811 openliero 16153 az 114u IPv4 1263778 0t0 UDP :58779 openliero 16153 az 115u IPv4 1263780 0t0 UDP :60852 openliero 16153 az 116u IPv4 1263781 0t0 UDP :51025 openliero 16153 az 117u IPv4 1263790 0t0 UDP :40153 openliero 16153 az 118u IPv4 1263791 0t0 UDP :43730 openliero 16153 az 119u IPv4 1263851 0t0 UDP :60372 openliero 16153 az 120u IPv4 1263852 0t0 UDP :52694 openliero 16153 az 121u IPv4 1263854 0t0 UDP :41559 openliero 16153 az 122u IPv4 1263855 0t0 UDP :37982 openliero 16153 az 123u IPv4 1263878 0t0 UDP :32865 openliero 16153 az 124u IPv4 1263879 0t0 UDP :59490 openliero 16153 az 125u IPv4 1264033 0t0 UDP :36323 openliero 16153 az 126u IPv4 1264034 0t0 UDP :47076 openliero 16153 az 127u IPv4 1264975 0t0 UDP :42347 openliero 16153 az 128u IPv4 1265378 0t0 UDP :35573 openliero 16153 az 129u IPv4 1306833 0t0 UDP :36276 openliero 16153 az 130u IPv4 1268196 0t0 UDP :35839 openliero 16153 az 131u IPv4 1268197 0t0 UDP :53022 openliero 16153 az 132u IPv4 1268395 0t0 UDP :43713 openliero 16153 az 133u IPv4 1268396 0t0 UDP :37200 openliero 16153 az 134u IPv4 1269535 0t0 UDP :56794 openliero 16153 az 135u IPv4 1269536 0t0 UDP :36457 openliero 16153 az 136u IPv4 1269537 0t0 UDP :58218 openliero 16153 az 137u IPv4 1270388 0t0 UDP :46984 openliero 16153 az 138u IPv4 1270389 0t0 UDP :33139 openliero 16153 az 139u IPv4 1270390 0t0 UDP :34148 openliero 16153 az 140u IPv4 1270461 0t0 UDP :43824 openliero 16153 az 141u IPv4 1270462 0t0 UDP :52813 openliero 16153 az 142u IPv4 1270519 0t0 UDP :43837 openliero 16153 az 143u IPv4 1270520 0t0 UDP :45797 openliero 16153 az 144u IPv4 1270524 0t0 UDP :35223 openliero 16153 az 145u IPv4 1270527 0t0 UDP :48964 openliero 16153 az 146u IPv4 1270528 0t0 UDP :59589 openliero 16153 az 147u IPv4 1271597 0t0 UDP :39902 openliero 16153 az 148u IPv4 1272647 0t0 UDP :49504 openliero 16153 az 149u IPv4 1272958 0t0 UDP :46239 openliero 16153 az 150u IPv4 1273351 0t0 UDP :36695 openliero 16153 az 151u IPv4 1273352 0t0 UDP :37484 openliero 16153 az 152u IPv4 1273353 0t0 UDP :51318 openliero 16153 az 153u IPv4 1273354 0t0 UDP :40294 openliero 16153 az 154u IPv4 1273355 0t0 UDP :53042 openliero 16153 az 155u IPv4 1273911 0t0 UDP :40055 openliero 16153 az 156u IPv4 1274225 0t0 UDP :55028 openliero 16153 az 157u IPv4 1274226 0t0 UDP :56427 openliero 16153 az 158u IPv4 1275027 0t0 UDP :40313 openliero 16153 az 159u IPv4 1275923 0t0 UDP :52491 openliero 16153 az 160u IPv4 1277034 0t0 UDP :39661 openliero 16153 az 161u IPv4 1292651 0t0 UDP :33944 openliero 16153 az 162u IPv4 1296836 0t0 UDP :58639 openliero 16153 az 163u IPv4 1296837 0t0 UDP :46892 openliero 16153 az 164u IPv4 1296921 0t0 UDP :59002 openliero 16153 az 165u IPv4 1296922 0t0 UDP :44155 openliero 16153 az 166u IPv4 1304941 0t0 UDP :57214 openliero 16153 az 167u IPv4 1305245 0t0 UDP :51054 openliero 16153 az 168u IPv4 1305246 0t0 UDP :60903 openliero 16153 az 169u IPv4 1305260 0t0 UDP :48707 openliero 16153 az 170u IPv4 1305261 0t0 UDP :38565 openliero 16153 az 171u IPv4 1305262 0t0 UDP :56873 openliero 16153 az 172u IPv4 1305263 0t0 UDP :53125 openliero 16153 az 173u IPv4 1305264 0t0 UDP :47329 openliero 16153 az 174u IPv4 1305265 0t0 UDP :45871 openliero 16153 az 175u IPv4 1305674 0t0 UDP :49615 openliero 16153 az 176u IPv4 1305675 0t0 UDP :40363 openliero 16153 az 177u IPv4 1305676 0t0 UDP :51537 openliero 16153 az 178u IPv4 1305690 0t0 UDP :34618 openliero 16153 az 179u IPv4 1305691 0t0 UDP :41600 openliero 16153 az 180u IPv4 1306238 0t0 UDP :48646 openliero 16153 az 181u IPv4 1306260 0t0 UDP :33660 openliero 16153 az 182u IPv4 1306261 0t0 UDP :34536 openliero 16153 az 183u IPv4 1306262 0t0 UDP :52697 openliero 16153 az 184u IPv4 1306263 0t0 UDP :59552 openliero 16153 az 185u IPv4 1306264 0t0 UDP :52897 openliero 16153 az 186u IPv4 1306265 0t0 UDP :34470 openliero 16153 az 187u IPv4 1306266 0t0 UDP :54402 openliero 16153 az 188u IPv4 1306267 0t0 UDP :59012 openliero 16153 az 189u IPv4 1306271 0t0 UDP :52615 openliero 16153 az 190u IPv4 1306496 0t0 UDP :46294 openliero 16153 az 191u IPv4 1306497 0t0 UDP :56056 openliero 16153 az 192u IPv4 1306507 0t0 UDP :42274 openliero 16153 az 193u IPv4 1306508 0t0 UDP :56640 openliero 16153 az 194u IPv4 1306509 0t0 UDP :34741 openliero 16153 az 195u IPv4 1306510 0t0 UDP :58481 openliero 16153 az 196u IPv4 1306610 0t0 UDP :33292 openliero 16153 az 197u IPv4 1374229 0t0 UDP :50664 openliero 16153 az 198u IPv4 1306624 0t0 UDP :40061 openliero 16153 az 199u IPv4 1306625 0t0 UDP :39821 openliero 16153 az 200u IPv4 1306670 0t0 UDP :58736 openliero 16153 az 201u IPv4 1306671 0t0 UDP :33234 openliero 16153 az 202u IPv4 1306835 0t0 UDP :37727 openliero 16153 az 203u IPv4 1306836 0t0 UDP :49471 openliero 16153 az 204u IPv4 1306955 0t0 UDP :38813 openliero 16153 az 205u IPv4 1307017 0t0 UDP :42254 openliero 16153 az 206u IPv4 1307043 0t0 UDP :38511 openliero 16153 az 207u IPv4 1307044 0t0 UDP :33237 openliero 16153 az 208u IPv4 1307113 0t0 UDP :52867 openliero 16153 az 209u IPv4 1307114 0t0 UDP :54055 openliero 16153 az 210u IPv4 1307115 0t0 UDP :53008 openliero 16153 az 211u IPv4 1307116 0t0 UDP :43250 openliero 16153 az 212u IPv4 1307118 0t0 UDP :44917 openliero 16153 az 213u IPv4 1307119 0t0 UDP :44083 openliero 16153 az 214u IPv4 1307136 0t0 UDP :50502 openliero 16153 az 215u IPv4 1307137 0t0 UDP :43393 openliero 16153 az 216u IPv4 1307401 0t0 UDP :45585 openliero 16153 az 217u IPv4 1307402 0t0 UDP :33426 openliero 16153 az 218u IPv4 1307409 0t0 UDP :56470 openliero 16153 az 219u IPv4 1307947 0t0 UDP :49975 openliero 16153 az 220u IPv4 1308295 0t0 UDP :53319 openliero 16153 az 221u IPv4 1308402 0t0 UDP :55113 openliero 16153 az 222u IPv4 1308403 0t0 UDP :60185 openliero 16153 az 223u IPv4 1308451 0t0 UDP :57492 openliero 16153 az 224u IPv4 1308452 0t0 UDP :59987 openliero 16153 az 225u IPv4 1308474 0t0 UDP :50146 openliero 16153 az 226u IPv4 1308475 0t0 UDP :40877 openliero 16153 az 227u IPv4 1308501 0t0 UDP :52534 openliero 16153 az 228u IPv4 1308502 0t0 UDP :51610 openliero 16153 az 229u IPv4 1308557 0t0 UDP :46024 openliero 16153 az 230u IPv4 1308558 0t0 UDP :58005 openliero 16153 az 231u IPv4 1308559 0t0 UDP :58331 openliero 16153 az 232u IPv4 1308563 0t0 UDP :49849 openliero 16153 az 233u IPv4 1308564 0t0 UDP :57272 openliero 16153 az 234u IPv4 1308990 0t0 UDP :53340 openliero 16153 az 235u IPv4 1309432 0t0 UDP :41235 openliero 16153 az 236u IPv4 1309572 0t0 UDP :58651 openliero 16153 az 237u IPv4 1309714 0t0 UDP :51114 openliero 16153 az 238u IPv4 1309715 0t0 UDP :33948 openliero 16153 az 239u IPv4 1309933 0t0 UDP :53578 openliero 16153 az 240u IPv4 1310029 0t0 UDP :34724 openliero 16153 az 241u IPv4 1310030 0t0 UDP :44967 openliero 16153 az 242u IPv4 1310078 0t0 UDP :57556 openliero 16153 az 243u IPv4 1310083 0t0 UDP :38819 openliero 16153 az 244u IPv4 1310084 0t0 UDP :36008 openliero 16153 az 245u IPv4 1310128 0t0 UDP :45102 openliero 16153 az 246u IPv4 1310129 0t0 UDP :37297 openliero 16153 az 247u IPv4 1310148 0t0 UDP :55483 openliero 16153 az 248u IPv4 1310149 0t0 UDP :60476 openliero 16153 az 249u IPv4 1310189 0t0 UDP :54206 openliero 16153 az 250u IPv4 1310190 0t0 UDP :59586 openliero 16153 az 251u IPv4 1311693 0t0 UDP :33612 openliero 16153 az 252u IPv4 1311694 0t0 UDP :55118 openliero 16153 az 253u IPv4 1311695 0t0 UDP :41944 openliero 16153 az 254u IPv4 1312144 0t0 UDP :40541 openliero 16153 az 255u IPv4 1312155 0t0 UDP :56547 openliero 16153 az 256u IPv4 1312156 0t0 UDP :52256 openliero 16153 az 257u IPv4 1312185 0t0 UDP :36972 openliero 16153 az 258u IPv4 1312186 0t0 UDP :51576 openliero 16153 az 259u IPv4 1312334 0t0 UDP :40768 openliero 16153 az 260u IPv4 1312472 0t0 UDP :42590 openliero 16153 az 261u IPv4 1312473 0t0 UDP :53933 openliero 16153 az 262u IPv4 1312848 0t0 UDP :52579 openliero 16153 az 263u IPv4 1313380 0t0 UDP :50204 openliero 16153 az 264u IPv4 1313381 0t0 UDP :38509 openliero 16153 az 265u IPv4 1313382 0t0 UDP :35665 openliero 16153 az 266u IPv4 1313396 0t0 UDP :34106 openliero 16153 az 267u IPv4 1313397 0t0 UDP :33913 openliero 16153 az 268u IPv4 1313419 0t0 UDP :44198 openliero 16153 az 269u IPv4 1313420 0t0 UDP :49938 openliero 16153 az 270u IPv4 1315255 0t0 UDP :60923 openliero 16153 az 271u IPv4 1315267 0t0 UDP :51132 openliero 16153 az 272u IPv4 1315268 0t0 UDP :32838 openliero 16153 az 273u IPv4 1315269 0t0 UDP :34224 openliero 16153 az 274u IPv4 1315270 0t0 UDP :40975 openliero 16153 az 275u IPv4 1315284 0t0 UDP :40789 openliero 16153 az 276u IPv4 1315285 0t0 UDP :53701 openliero 16153 az 277u IPv4 1315287 0t0 UDP :35394 openliero 16153 az 278u IPv4 1315288 0t0 UDP :50875 openliero 16153 az 279u IPv4 1315289 0t0 UDP :35659 openliero 16153 az 280u IPv4 1315290 0t0 UDP :47730 openliero 16153 az 281u IPv4 1315300 0t0 UDP :37796 openliero 16153 az 282u IPv4 1315301 0t0 UDP :55273 openliero 16153 az 283u IPv4 1316324 0t0 UDP :44991 openliero 16153 az 284u IPv4 1317353 0t0 UDP :58748 openliero 16153 az 285u IPv4 1318074 0t0 UDP :39243 openliero 16153 az 286u IPv4 1318088 0t0 UDP :39764 openliero 16153 az 287u IPv4 1318089 0t0 UDP :56022 openliero 16153 az 288u IPv4 1318094 0t0 UDP :37576 openliero 16153 az 289u IPv4 1318095 0t0 UDP :58711 openliero 16153 az 290u IPv4 1318105 0t0 UDP :40800 openliero 16153 az 291u IPv4 1318106 0t0 UDP :43025 openliero 16153 az 292u IPv4 1318107 0t0 UDP :49524 openliero 16153 az 293u IPv4 1318108 0t0 UDP :42244 openliero 16153 az 294u IPv4 1318110 0t0 UDP :40129 openliero 16153 az 295u IPv4 1318111 0t0 UDP :45211 openliero 16153 az 296u IPv4 1318112 0t0 UDP :58673 openliero 16153 az 297u IPv4 1318113 0t0 UDP :47683 openliero 16153 az 298u IPv4 1318127 0t0 UDP :44395 openliero 16153 az 299u IPv4 1318128 0t0 UDP :58911 openliero 16153 az 300u IPv4 1318129 0t0 UDP :33799 openliero 16153 az 301u IPv4 1318130 0t0 UDP :53614 openliero 16153 az 302u IPv4 1318131 0t0 UDP :54530 openliero 16153 az 303u IPv4 1318132 0t0 UDP :34298 openliero 16153 az 304u IPv4 1318133 0t0 UDP :44108 openliero 16153 az 305u IPv4 1318134 0t0 UDP :44621 openliero 16153 az 306u IPv4 1318135 0t0 UDP :55378 openliero 16153 az 307u IPv4 1318136 0t0 UDP :51955 openliero 16153 az 308u IPv4 1318157 0t0 UDP :37723 openliero 16153 az 309u IPv4 1319126 0t0 UDP :54032 openliero 16153 az 310u IPv4 1319138 0t0 UDP :40750 openliero 16153 az 311u IPv4 1319139 0t0 UDP :48253 openliero 16153 az 312u IPv4 1319142 0t0 UDP :47714 openliero 16153 az 313u IPv4 1319143 0t0 UDP :35987 openliero 16153 az 314u IPv4 1319676 0t0 UDP :55073 openliero 16153 az 315u IPv4 1319716 0t0 UDP :35073 openliero 16153 az 316u IPv4 1319794 0t0 UDP :54056 openliero 16153 az 317u IPv4 1319795 0t0 UDP :50594 openliero 16153 az 318u IPv4 1319796 0t0 UDP :57328 openliero 16153 az 319u IPv4 1319797 0t0 UDP :52607 openliero 16153 az 320u IPv4 1319798 0t0 UDP :50254 openliero 16153 az 321u IPv4 1319799 0t0 UDP :58613 openliero 16153 az 322u IPv4 1320293 0t0 UDP :57967 openliero 16153 az 323u IPv4 1320295 0t0 UDP :57984 openliero 16153 az 324u IPv4 1320296 0t0 UDP :42499 openliero 16153 az 325u IPv4 1320297 0t0 UDP :39492 openliero 16153 az 326u IPv4 1320298 0t0 UDP :55004 openliero 16153 az 327u IPv4 1320413 0t0 UDP :38955 openliero 16153 az 328u IPv4 1320543 0t0 UDP :45297 openliero 16153 az 329u IPv4 1320544 0t0 UDP :39060 openliero 16153 az 330u IPv4 1320545 0t0 UDP :52029 openliero 16153 az 331u IPv4 1320546 0t0 UDP :43927 openliero 16153 az 332u IPv4 1320551 0t0 UDP :56676 openliero 16153 az 333u IPv4 1320755 0t0 UDP :59826 openliero 16153 az 334u IPv4 1320756 0t0 UDP :51774 openliero 16153 az 335u IPv4 1320757 0t0 UDP :45848 openliero 16153 az 336u IPv4 1320758 0t0 UDP :58246 openliero 16153 az 337u IPv4 1320760 0t0 UDP :38579 openliero 16153 az 338u IPv4 1320761 0t0 UDP :50735 openliero 16153 az 339u IPv4 1320806 0t0 UDP :34573 openliero 16153 az 340u IPv4 1322692 0t0 UDP :44490 openliero 16153 az 341u IPv4 1323040 0t0 UDP :54983 openliero 16153 az 342u IPv4 1323054 0t0 UDP :41012 openliero 16153 az 343u IPv4 1323055 0t0 UDP :34781 openliero 16153 az 344u IPv4 1323140 0t0 UDP :48662 openliero 16153 az 345u IPv4 1323981 0t0 UDP :38345 openliero 16153 az 346u IPv4 1327889 0t0 UDP :48079 openliero 16153 az 347u IPv4 1328742 0t0 UDP :40743 openliero 16153 az 348u IPv4 1329230 0t0 UDP :50640 openliero 16153 az 349u IPv4 1329231 0t0 UDP :47881 openliero 16153 az 350u IPv4 1329232 0t0 UDP :47711 openliero 16153 az 351u IPv4 1331077 0t0 UDP :41432 openliero 16153 az 352u IPv4 1332011 0t0 UDP :55685 openliero 16153 az 353u IPv4 1332012 0t0 UDP :49491 openliero 16153 az 354u IPv4 1332013 0t0 UDP :39688 openliero 16153 az 355u IPv4 1332014 0t0 UDP :53350 openliero 16153 az 356u IPv4 1332251 0t0 UDP :46122 openliero 16153 az 357u IPv4 1332414 0t0 UDP :60150 openliero 16153 az 358u IPv4 1332415 0t0 UDP :41061 openliero 16153 az 359u IPv4 1332430 0t0 UDP :53770 openliero 16153 az 360u IPv4 1332431 0t0 UDP :59445 openliero 16153 az 361u IPv4 1332435 0t0 UDP :35212 openliero 16153 az 362u IPv4 1332436 0t0 UDP :45333 openliero 16153 az 363u IPv4 1332437 0t0 UDP :55222 openliero 16153 az 364u IPv4 1332601 0t0 UDP :49931 openliero 16153 az 365u IPv4 1332602 0t0 UDP :51086 openliero 16153 az 366u IPv4 1333870 0t0 UDP :38105 openliero 16153 az 367u IPv4 1333871 0t0 UDP :48602 openliero 16153 az 368u IPv4 1333872 0t0 UDP :51047 openliero 16153 az 369u IPv4 1334574 0t0 UDP :53480 openliero 16153 az 370u IPv4 1335988 0t0 UDP :55724 openliero 16153 az 371u IPv4 1337973 0t0 UDP :45546 openliero 16153 az 372u IPv4 1338042 0t0 UDP :49433 openliero 16153 az 373u IPv4 1339975 0t0 UDP :35866 openliero 16153 az 374u IPv4 1339981 0t0 UDP :34206 openliero 16153 az 375u IPv4 1339982 0t0 UDP :46199 openliero 16153 az 376u IPv4 1339983 0t0 UDP :59703 openliero 16153 az 377u IPv4 1340007 0t0 UDP :42915 openliero 16153 az 378u IPv4 1340008 0t0 UDP :43813 openliero 16153 az 379u IPv4 1340222 0t0 UDP :49464 openliero 16153 az 380u IPv4 1340399 0t0 UDP :35385 openliero 16153 az 381u IPv4 1340426 0t0 UDP :48285 openliero 16153 az 382u IPv4 1340427 0t0 UDP :43851 openliero 16153 az 383u IPv4 1340429 0t0 UDP :49618 openliero 16153 az 384u IPv4 1340430 0t0 UDP :37838 openliero 16153 az 385u IPv4 1340431 0t0 UDP :43354 openliero 16153 az 386u IPv4 1340432 0t0 UDP :59993 openliero 16153 az 387u IPv4 1340804 0t0 UDP :38395 openliero 16153 az 388u IPv4 1340825 0t0 UDP :37217 openliero 16153 az 389u IPv4 1340826 0t0 UDP :38884 openliero 16153 az 390u IPv4 1340837 0t0 UDP :39320 openliero 16153 az 391u IPv4 1340838 0t0 UDP :53717 openliero 16153 az 392u IPv4 1340839 0t0 UDP :58373 openliero 16153 az 393u IPv4 1340840 0t0 UDP :43222 openliero 16153 az 394u IPv4 1340841 0t0 UDP :44187 openliero 16153 az 395u IPv4 1340842 0t0 UDP :47110 openliero 16153 az 396u IPv4 1340857 0t0 UDP :57344 openliero 16153 az 397u IPv4 1340858 0t0 UDP :53669 openliero 16153 az 398u IPv4 1340859 0t0 UDP :44945 openliero 16153 az 399u IPv4 1340860 0t0 UDP :40200 openliero 16153 az 400u IPv4 1340891 0t0 UDP :58813 openliero 16153 az 401u IPv4 1340892 0t0 UDP :37203 openliero 16153 az 402u IPv4 1340905 0t0 UDP :41446 openliero 16153 az 403u IPv4 1340906 0t0 UDP :42211 openliero 16153 az 404u IPv4 1340923 0t0 UDP :40682 openliero 16153 az 405u IPv4 1340984 0t0 UDP :39404 openliero 16153 az 406u IPv4 1340985 0t0 UDP :52513 openliero 16153 az 407u IPv4 1341016 0t0 UDP :45948 openliero 16153 az 408u IPv4 1341017 0t0 UDP :59381 openliero 16153 az 409u IPv4 1341018 0t0 UDP :59601 openliero 16153 az 410u IPv4 1341019 0t0 UDP :46082 openliero 16153 az 411u IPv4 1341024 0t0 UDP :47765 openliero 16153 az 412u IPv4 1341025 0t0 UDP :41372 openliero 16153 az 413u IPv4 1341026 0t0 UDP :52108 openliero 16153 az 414u IPv4 1341027 0t0 UDP :50014 openliero 16153 az 415u IPv4 1341586 0t0 UDP :55892 openliero 16153 az 416u IPv4 1349888 0t0 UDP :42016 openliero 16153 az 417u IPv4 1349902 0t0 UDP :41491 openliero 16153 az 418u IPv4 1349903 0t0 UDP :48835 openliero 16153 az 419u IPv4 1349907 0t0 UDP :55325 openliero 16153 az 420u IPv4 1349908 0t0 UDP :43106 openliero 16153 az 421u IPv4 1349909 0t0 UDP :52366 openliero 16153 az 422u IPv4 1350060 0t0 UDP :37997 openliero 16153 az 423u IPv4 1350061 0t0 UDP :40231 openliero 16153 az 424u IPv4 1350168 0t0 UDP :45983 openliero 16153 az 425u IPv4 1351309 0t0 UDP :56201 openliero 16153 az 426u IPv4 1351336 0t0 UDP :55434 openliero 16153 az 427u IPv4 1351337 0t0 UDP :46004 openliero 16153 az 428u IPv4 1351339 0t0 UDP :51311 openliero 16153 az 429u IPv4 1351340 0t0 UDP :56061 openliero 16153 az 430u IPv4 1351354 0t0 UDP :55729 openliero 16153 az 431u IPv4 1351355 0t0 UDP :46642 openliero 16153 az 432u IPv4 1351921 0t0 UDP :39155 openliero 16153 az 433u IPv4 1352286 0t0 UDP :50651 openliero 16153 az 434u IPv4 1352498 0t0 UDP :39971 openliero 16153 az 435u IPv4 1352958 0t0 UDP :35781 openliero 16153 az 436u IPv4 1352985 0t0 UDP :53989 openliero 16153 az 437u IPv4 1352986 0t0 UDP :33613 openliero 16153 az 438u IPv4 1353000 0t0 UDP :57052 openliero 16153 az 439u IPv4 1353001 0t0 UDP :48932 openliero 16153 az 440u IPv4 1355207 0t0 UDP :48674 openliero 16153 az 441u IPv4 1355212 0t0 UDP :56616 openliero 16153 az 442u IPv4 1355213 0t0 UDP :54772 openliero 16153 az 443u IPv4 1355297 0t0 UDP :38103 openliero 16153 az 444u IPv4 1355298 0t0 UDP :36915 openliero 16153 az 445u IPv4 1355299 0t0 UDP :55055 openliero 16153 az 446u IPv4 1355300 0t0 UDP :46192 openliero 16153 az 447u IPv4 1355338 0t0 UDP :46512 openliero 16153 az 448u IPv4 1355339 0t0 UDP :48934 openliero 16153 az 449u IPv4 1356161 0t0 UDP :56107 openliero 16153 az 450u IPv4 1356162 0t0 UDP :45042 openliero 16153 az 451u IPv4 1356163 0t0 UDP :32967 openliero 16153 az 452u IPv4 1356164 0t0 UDP :51383 openliero 16153 az 453u IPv4 1356165 0t0 UDP :51230 openliero 16153 az 454u IPv4 1356175 0t0 UDP :44460 openliero 16153 az 455u IPv4 1356176 0t0 UDP :36737 openliero 16153 az 456u IPv4 1356186 0t0 UDP :45241 openliero 16153 az 457u IPv4 1356187 0t0 UDP :60662 openliero 16153 az 458u IPv4 1356433 0t0 UDP :59949 openliero 16153 az 459u IPv4 1356434 0t0 UDP :60120 openliero 16153 az 460u IPv4 1356435 0t0 UDP :47359 openliero 16153 az 461u IPv4 1356454 0t0 UDP :46830 openliero 16153 az 462u IPv4 1356455 0t0 UDP :39056 openliero 16153 az 463u IPv4 1356469 0t0 UDP :38712 openliero 16153 az 464u IPv4 1356470 0t0 UDP :38852 openliero 16153 az 465u IPv4 1356491 0t0 UDP :56724 openliero 16153 az 466u IPv4 1356492 0t0 UDP :38463 openliero 16153 az 467u IPv4 1356532 0t0 UDP :46711 openliero 16153 az 468u IPv4 1356533 0t0 UDP :53946 openliero 16153 az 469u IPv4 1356547 0t0 UDP :59262 openliero 16153 az 470u IPv4 1356548 0t0 UDP :38897 openliero 16153 az 471u IPv4 1356549 0t0 UDP :60792 openliero 16153 az 472u IPv4 1356550 0t0 UDP :53095 openliero 16153 az 473u IPv4 1356552 0t0 UDP :60457 openliero 16153 az 474u IPv4 1356553 0t0 UDP :48298 openliero 16153 az 475u IPv4 1356789 0t0 UDP :35304 openliero 16153 az 476u IPv4 1356860 0t0 UDP :35677 openliero 16153 az 477u IPv4 1356861 0t0 UDP :55238 openliero 16153 az 478u IPv4 1356904 0t0 UDP :44566 openliero 16153 az 479u IPv4 1357289 0t0 UDP :41909 openliero 16153 az 480u IPv4 1359023 0t0 UDP :43881 openliero 16153 az 481u IPv4 1359796 0t0 UDP :60347 openliero 16153 az 482u IPv4 1359816 0t0 UDP :52882 openliero 16153 az 483u IPv4 1359817 0t0 UDP :34095 openliero 16153 az 484u IPv4 1360524 0t0 UDP :60299 openliero 16153 az 485u IPv4 1362236 0t0 UDP :58719 openliero 16153 az 486u IPv4 1363196 0t0 UDP :35322 openliero 16153 az 487u IPv4 1364406 0t0 UDP :34711 openliero 16153 az 488u IPv4 1364957 0t0 UDP :60367 openliero 16153 az 489u IPv4 1366083 0t0 UDP :40904 openliero 16153 az 490u IPv4 1366098 0t0 UDP :42921 openliero 16153 az 491u IPv4 1366099 0t0 UDP :45494 openliero 16153 az 492u IPv4 1366956 0t0 UDP :53550 openliero 16153 az 493u IPv4 1367116 0t0 UDP :47865 openliero 16153 az 494u IPv4 1367117 0t0 UDP :59196 openliero 16153 az 495u IPv4 1371414 0t0 UDP :55614 openliero 16153 az 496u IPv4 1371699 0t0 UDP :54496 openliero 16153 az 497u IPv4 1371700 0t0 UDP :35737 openliero 16153 az 498u IPv4 1372664 0t0 UDP :49225 openliero 16153 az 499u IPv4 1373808 0t0 UDP :46433 openliero 16153 az 500u IPv4 1373809 0t0 UDP :48192 openliero 16153 az 501u IPv4 1373810 0t0 UDP :47818 openliero 16153 az 502u IPv4 1373813 0t0 UDP :57292 openliero 16153 az 503u IPv4 1373814 0t0 UDP :60993 openliero 16153 az 504u IPv4 1373980 0t0 UDP :47810 openliero 16153 az 505u IPv4 1376019 0t0 UDP :48094 openliero 16153 az 506u IPv4 1373981 0t0 UDP :59600 openliero 16153 az 507u IPv4 1373983 0t0 UDP :60548 openliero 16153 az 508u IPv4 1373984 0t0 UDP :60414 openliero 16153 az 509u IPv4 1374001 0t0 UDP :57347 openliero 16153 az 510u IPv4 1374065 0t0 UDP :58125 openliero 16153 az 511u IPv4 1374066 0t0 UDP :52890 openliero 16153 az 512u IPv4 1374086 0t0 UDP :39101 openliero 16153 az 513u IPv4 1374087 0t0 UDP :50499 openliero 16153 az 514u IPv4 1374144 0t0 UDP :51975 openliero 16153 az 515u IPv4 1374145 0t0 UDP :48714 openliero 16153 az 516u IPv4 1374230 0t0 UDP :34955 openliero 16153 az 517u IPv4 1374231 0t0 UDP :52556 openliero 16153 az 518u IPv4 1374232 0t0 UDP :60500 openliero 16153 az 519u IPv4 1374701 0t0 UDP :47424 openliero 16153 az 520u IPv4 1395048 0t0 UDP :48452 openliero 16153 az 521u IPv4 1377404 0t0 UDP :50646 openliero 16153 az 522u IPv4 1378099 0t0 UDP :42517 openliero 16153 az 523u IPv4 1378100 0t0 UDP :52391 openliero 16153 az 524u IPv4 1378251 0t0 UDP :56230 openliero 16153 az 525u IPv4 1379189 0t0 UDP :45659 openliero 16153 az 526u IPv4 1379203 0t0 UDP :55603 openliero 16153 az 527u IPv4 1379204 0t0 UDP :51022 openliero 16153 az 528u IPv4 1380050 0t0 UDP :41348 openliero 16153 az 529u IPv4 1380065 0t0 UDP :37715 openliero 16153 az 530u IPv4 1380066 0t0 UDP :37751 openliero 16153 az 531u IPv4 1380284 0t0 UDP :39194 openliero 16153 az 532u IPv4 1382392 0t0 UDP :45133 openliero 16153 az 533u IPv4 1382951 0t0 UDP :43790 openliero 16153 az 534u IPv4 1383072 0t0 UDP :53483 openliero 16153 az 535u IPv4 1383073 0t0 UDP :57400 openliero 16153 az 536u IPv4 1383347 0t0 UDP :55018 openliero 16153 az 537u IPv4 1383412 0t0 UDP :43615 openliero 16153 az 538u IPv4 1383413 0t0 UDP :40762 openliero 16153 az 539u IPv4 1383764 0t0 UDP :47148 openliero 16153 az 540u IPv4 1383982 0t0 UDP :36467 openliero 16153 az 541u IPv4 1385212 0t0 UDP :53563 openliero 16153 az 542u IPv4 1386008 0t0 UDP :40919 openliero 16153 az 543u IPv4 1386009 0t0 UDP :39190 openliero 16153 az 544u IPv4 1386010 0t0 UDP :39261 openliero 16153 az 545u IPv4 1388360 0t0 UDP :55209 openliero 16153 az 546u IPv4 1388455 0t0 UDP :56244 openliero 16153 az 547u IPv4 1388456 0t0 UDP :52369 openliero 16153 az 548u IPv4 1388481 0t0 UDP :42063 openliero 16153 az 549u IPv4 1388482 0t0 UDP :50415 openliero 16153 az 550u IPv4 1388483 0t0 UDP :49542 openliero 16153 az 551u IPv4 1388808 0t0 UDP :39265 openliero 16153 az 552u IPv4 1389861 0t0 UDP :40282 openliero 16153 az 553u IPv4 1389883 0t0 UDP :50919 openliero 16153 az 554u IPv4 1389884 0t0 UDP :59477 openliero 16153 az 555u IPv4 1389885 0t0 UDP :44551 openliero 16153 az 556u IPv4 1390665 0t0 UDP :47968 openliero 16153 az 557u IPv4 1391910 0t0 UDP :38301 openliero 16153 az 558u IPv4 1391929 0t0 UDP :54783 openliero 16153 az 559u IPv4 1392034 0t0 UDP :57137 openliero 16153 az 560u IPv4 1392035 0t0 UDP :37451 openliero 16153 az 561u IPv4 1392532 0t0 UDP :42844 openliero 16153 az 562u IPv4 1392533 0t0 UDP :56618 openliero 16153 az 563u IPv4 1392534 0t0 UDP :46999 openliero 16153 az 564u IPv4 1392549 0t0 UDP :40979 openliero 16153 az 565u IPv4 1392550 0t0 UDP :51720 openliero 16153 az 566u IPv4 1392635 0t0 UDP :57748 openliero 16153 az 567u IPv4 1392636 0t0 UDP :56425 openliero 16153 az 568u IPv4 1392707 0t0 UDP :39851 openliero 16153 az 569u IPv4 1392708 0t0 UDP :37541 openliero 16153 az 570u IPv4 1392780 0t0 UDP :44809 openliero 16153 az 571u IPv4 1392781 0t0 UDP :47000 openliero 16153 az 572u IPv4 1393566 0t0 UDP :47036 openliero 16153 az 573u IPv4 1394177 0t0 UDP :53858 openliero 16153 az 574u IPv4 1394178 0t0 UDP :41553 openliero 16153 az 575u IPv4 1394179 0t0 UDP :43931 openliero 16153 az 576u IPv4 1394196 0t0 UDP :56624 openliero 16153 az 577u IPv4 1394212 0t0 UDP :36495 openliero 16153 az 578u IPv4 1394213 0t0 UDP :54713 openliero 16153 az 579u IPv4 1394214 0t0 UDP :57305 openliero 16153 az 580u IPv4 1394215 0t0 UDP :58280 openliero 16153 az 581u IPv4 1394216 0t0 UDP :46964 openliero 16153 az 582u IPv4 1394217 0t0 UDP :49351 openliero 16153 az 583u IPv4 1394218 0t0 UDP :40586 openliero 16153 az 584u IPv4 1394219 0t0 UDP :41336 openliero 16153 az 585u IPv4 1394489 0t0 UDP :55908 openliero 16153 az 586u IPv4 1394670 0t0 UDP :46399 openliero 16153 az 587u IPv4 1395049 0t0 UDP :45696 openliero 16153 az 588u IPv4 1424423 0t0 UDP :45218 openliero 16153 az 589u IPv4 1395050 0t0 UDP :46893 openliero 16153 az 590u IPv4 1395051 0t0 UDP :44606 openliero 16153 az 591u IPv4 1395052 0t0 UDP :52929 openliero 16153 az 592u IPv4 1395053 0t0 UDP :34000 openliero 16153 az 593u IPv4 1395054 0t0 UDP :54866 openliero 16153 az 594u IPv4 1395055 0t0 UDP :41761 openliero 16153 az 595u IPv4 1395056 0t0 UDP :51288 openliero 16153 az 596u IPv4 1395057 0t0 UDP :52894 openliero 16153 az 597u IPv4 1395058 0t0 UDP :53877 openliero 16153 az 598u IPv4 1395059 0t0 UDP :54318 openliero 16153 az 599u IPv4 1395060 0t0 UDP :33199 openliero 16153 az 600u IPv4 1395061 0t0 UDP :50316 openliero 16153 az 601u IPv4 1395062 0t0 UDP :49891 openliero 16153 az 602u IPv4 1395063 0t0 UDP :57957 openliero 16153 az 603u IPv4 1395064 0t0 UDP :55920 openliero 16153 az 604u IPv4 1395065 0t0 UDP :52493 openliero 16153 az 605u IPv4 1395066 0t0 UDP :38681 openliero 16153 az 606u IPv4 1395067 0t0 UDP :35250 openliero 16153 az 607u IPv4 1395068 0t0 UDP :34704 openliero 16153 az 608u IPv4 1397630 0t0 UDP :55199 openliero 16153 az 609u IPv4 1398782 0t0 UDP :46060 openliero 16153 az 610u IPv4 1401157 0t0 UDP :36075 openliero 16153 az 611u IPv4 1401158 0t0 UDP :60226 openliero 16153 az 612u IPv4 1401159 0t0 UDP :37862 openliero 16153 az 613u IPv4 1401777 0t0 UDP :53118 openliero 16153 az 614u IPv4 1403183 0t0 UDP :46573 openliero 16153 az 615u IPv4 1403198 0t0 UDP :43246 openliero 16153 az 616u IPv4 1403199 0t0 UDP :33973 openliero 16153 az 617u IPv4 1403201 0t0 UDP :58993 openliero 16153 az 618u IPv4 1403202 0t0 UDP :50460 openliero 16153 az 619u IPv4 1403203 0t0 UDP :40562 openliero 16153 az 620u IPv4 1403204 0t0 UDP :54661 openliero 16153 az 621u IPv4 1403205 0t0 UDP :37377 openliero 16153 az 622u IPv4 1403206 0t0 UDP :36598 openliero 16153 az 623u IPv4 1403630 0t0 UDP :47557 openliero 16153 az 624u IPv4 1404250 0t0 UDP :51126 openliero 16153 az 625u IPv4 1404251 0t0 UDP :46201 openliero 16153 az 626u IPv4 1404252 0t0 UDP :33864 openliero 16153 az 627u IPv4 1404253 0t0 UDP :50761 openliero 16153 az 628u IPv4 1404254 0t0 UDP :32890 openliero 16153 az 629u IPv4 1404272 0t0 UDP :60411 openliero 16153 az 630u IPv4 1404273 0t0 UDP :54396 openliero 16153 az 631u IPv4 1404283 0t0 UDP :50045 openliero 16153 az 632u IPv4 1404284 0t0 UDP :53762 openliero 16153 az 633u IPv4 1404872 0t0 UDP :54915 openliero 16153 az 634u IPv4 1405048 0t0 UDP :46738 openliero 16153 az 635u IPv4 1405049 0t0 UDP :60832 openliero 16153 az 636u IPv4 1405410 0t0 UDP :59063 openliero 16153 az 637u IPv4 1405450 0t0 UDP :34083 openliero 16153 az 638u IPv4 1405451 0t0 UDP :38308 openliero 16153 az 639u IPv4 1405643 0t0 UDP :42438 openliero 16153 az 640u IPv4 1405644 0t0 UDP :60649 openliero 16153 az 641u IPv4 1405861 0t0 UDP :55421 openliero 16153 az 642u IPv4 1405864 0t0 UDP :40422 openliero 16153 az 643u IPv4 1405865 0t0 UDP :55749 openliero 16153 az 644u IPv4 1405866 0t0 UDP :47897 openliero 16153 az 645u IPv4 1405867 0t0 UDP :37076 openliero 16153 az 646u IPv4 1405881 0t0 UDP :58341 openliero 16153 az 647u IPv4 1405882 0t0 UDP :53863 openliero 16153 az 648u IPv4 1405944 0t0 UDP :40300 openliero 16153 az 649u IPv4 1405945 0t0 UDP :37505 openliero 16153 az 650u IPv4 1406783 0t0 UDP :53001 openliero 16153 az 651u IPv4 1406822 0t0 UDP :55795 openliero 16153 az 652u IPv4 1407484 0t0 UDP :60900 openliero 16153 az 653u IPv4 1407486 0t0 UDP :33415 openliero 16153 az 654u IPv4 1407487 0t0 UDP :43735 openliero 16153 az 655u IPv4 1409142 0t0 UDP :56982 openliero 16153 az 656u IPv4 1410278 0t0 UDP :55002 openliero 16153 az 657u IPv4 1410292 0t0 UDP :47388 openliero 16153 az 658u IPv4 1410293 0t0 UDP :44201 openliero 16153 az 659u IPv4 1410336 0t0 UDP :43518 openliero 16153 az 660u IPv4 1410337 0t0 UDP :43650 openliero 16153 az 661u IPv4 1413303 0t0 UDP :59218 openliero 16153 az 662u IPv4 1415110 0t0 UDP :39259 openliero 16153 az 663u IPv4 1416208 0t0 UDP :38536 openliero 16153 az 664u IPv4 1416266 0t0 UDP :60959 openliero 16153 az 665u IPv4 1417774 0t0 UDP :36594 openliero 16153 az 666u IPv4 1422313 0t0 UDP :58158 openliero 16153 az 667u IPv4 1423016 0t0 UDP :57696 openliero 16153 az 668u IPv4 1424185 0t0 UDP :50541 openliero 16153 az 669u IPv4 1424211 0t0 UDP :60565 openliero 16153 az 670u IPv4 1424212 0t0 UDP :48605 openliero 16153 az 671u IPv4 1424328 0t0 UDP :52940 openliero 16153 az 672u IPv4 1424424 0t0 UDP :37866 openliero 16153 az 673u IPv4 1499981 0t0 UDP :51506 openliero 16153 az 674u IPv4 1424425 0t0 UDP :60373 openliero 16153 az 675u IPv4 1424426 0t0 UDP :50804 openliero 16153 az 676u IPv4 1424440 0t0 UDP :44458 openliero 16153 az 677u IPv4 1424441 0t0 UDP :47214 openliero 16153 az 678u IPv4 1424623 0t0 UDP :60931 openliero 16153 az 679u IPv4 1424625 0t0 UDP :36269 openliero 16153 az 680u IPv4 1424626 0t0 UDP :55173 openliero 16153 az 681u IPv4 1424627 0t0 UDP :45853 openliero 16153 az 682u IPv4 1424628 0t0 UDP :43471 openliero 16153 az 683u IPv4 1424642 0t0 UDP :47303 openliero 16153 az 684u IPv4 1424643 0t0 UDP :53793 openliero 16153 az 685u IPv4 1424644 0t0 UDP :44257 openliero 16153 az 686u IPv4 1424645 0t0 UDP :41942 openliero 16153 az 687u IPv4 1424706 0t0 UDP :36370 openliero 16153 az 688u IPv4 1424707 0t0 UDP :54084 openliero 16153 az 689u IPv4 1424728 0t0 UDP :59052 openliero 16153 az 690u IPv4 1424729 0t0 UDP :56259 openliero 16153 az 691u IPv4 1425774 0t0 UDP :59769 openliero 16153 az 692u IPv4 1426675 0t0 UDP :58495 openliero 16153 az 693u IPv4 1426690 0t0 UDP :53412 openliero 16153 az 694u IPv4 1426691 0t0 UDP :60687 openliero 16153 az 695u IPv4 1428047 0t0 UDP :38916 openliero 16153 az 696u IPv4 1428699 0t0 UDP :52568 openliero 16153 az 697u IPv4 1428864 0t0 UDP :57135 openliero 16153 az 698u IPv4 1428915 0t0 UDP :38065 openliero 16153 az 699u IPv4 1428937 0t0 UDP :38517 openliero 16153 az 700u IPv4 1428938 0t0 UDP :39878 openliero 16153 az 701u IPv4 1428940 0t0 UDP :51985 openliero 16153 az 702u IPv4 1428941 0t0 UDP :48787 openliero 16153 az 703u IPv4 1428981 0t0 UDP :40983 openliero 16153 az 704u IPv4 1428982 0t0 UDP :40054 openliero 16153 az 705u IPv4 1429018 0t0 UDP :41136 openliero 16153 az 706u IPv4 1429019 0t0 UDP :47710 openliero 16153 az 707u IPv4 1429024 0t0 UDP :50054 openliero 16153 az 708u IPv4 1429025 0t0 UDP :51722 openliero 16153 az 709u IPv4 1429026 0t0 UDP :54053 openliero 16153 az 710u IPv4 1429027 0t0 UDP :54519 openliero 16153 az 711u IPv4 1429028 0t0 UDP :59403 openliero 16153 az 712u IPv4 1429029 0t0 UDP :58696 openliero 16153 az 713u IPv4 1429481 0t0 UDP :58863 openliero 16153 az 714u IPv4 1429813 0t0 UDP :50237 openliero 16153 az 715u IPv4 1429896 0t0 UDP :52169 openliero 16153 az 716u IPv4 1429897 0t0 UDP :43362 openliero 16153 az 717u IPv4 1429899 0t0 UDP :56372 openliero 16153 az 718u IPv4 1429900 0t0 UDP :40395 openliero 16153 az 719u IPv4 1430270 0t0 UDP :49280 openliero 16153 az 720u IPv4 1430795 0t0 UDP :57485 openliero 16153 az 721u IPv4 1430809 0t0 UDP :45785 openliero 16153 az 722u IPv4 1430810 0t0 UDP :33531 openliero 16153 az 723u IPv4 1430892 0t0 UDP :42570 openliero 16153 az 724u IPv4 1430893 0t0 UDP :50750 openliero 16153 az 725u IPv4 1431763 0t0 UDP :35667 openliero 16153 az 726u IPv4 1431798 0t0 UDP :35522 openliero 16153 az 727u IPv4 1431812 0t0 UDP :35789 openliero 16153 az 728u IPv4 1431813 0t0 UDP :33424 openliero 16153 az 729u IPv4 1431951 0t0 UDP :55912 openliero 16153 az 730u IPv4 1431952 0t0 UDP :58318 openliero 16153 az 731u IPv4 1431968 0t0 UDP :36402 openliero 16153 az 732u IPv4 1431969 0t0 UDP :54028 openliero 16153 az 733u IPv4 1433721 0t0 UDP :48142 openliero 16153 az 734u IPv4 1434735 0t0 UDP :34843 openliero 16153 az 735u IPv4 1434736 0t0 UDP :50964 openliero 16153 az 736u IPv4 1434737 0t0 UDP :35537 openliero 16153 az 737u IPv4 1435441 0t0 UDP :47580 openliero 16153 az 738u IPv4 1436120 0t0 UDP :43814 openliero 16153 az 739u IPv4 1438749 0t0 UDP :38096 openliero 16153 az 740u IPv4 1440330 0t0 UDP :34074 openliero 16153 az 741u IPv4 1444792 0t0 UDP :48063 openliero 16153 az 742u IPv4 1474294 0t0 UDP :45976 openliero 16153 az 743u IPv4 1474378 0t0 UDP :54243 openliero 16153 az 744u IPv4 1474379 0t0 UDP :49899 openliero 16153 az 745u IPv4 1474434 0t0 UDP :39152 openliero 16153 az 746u IPv4 1474449 0t0 UDP :52209 openliero 16153 az 747u IPv4 1474450 0t0 UDP :60318 openliero 16153 az 748u IPv4 1474604 0t0 UDP :58872 openliero 16153 az 749u IPv4 1474605 0t0 UDP :42784 openliero 16153 az 750u IPv4 1474606 0t0 UDP :54690 openliero 16153 az 751u IPv4 1474607 0t0 UDP :44224 openliero 16153 az 752u IPv4 1474693 0t0 UDP :51235 openliero 16153 az 753u IPv4 1474694 0t0 UDP :50471 openliero 16153 az 754u IPv4 1474723 0t0 UDP :57003 openliero 16153 az 755u IPv4 1474931 0t0 UDP :55420 openliero 16153 az 756u IPv4 1478636 0t0 UDP :48424 openliero 16153 az 757u IPv4 1479516 0t0 UDP :42677 openliero 16153 az 758u IPv4 1479526 0t0 UDP :36150 openliero 16153 az 759u IPv4 1479527 0t0 UDP :56415 openliero 16153 az 760u IPv4 1479634 0t0 UDP :39162 openliero 16153 az 761u IPv4 1479644 0t0 UDP :34615 openliero 16153 az 762u IPv4 1479645 0t0 UDP :42296 openliero 16153 az 763u IPv4 1479820 0t0 UDP :34105 openliero 16153 az 764u IPv4 1479839 0t0 UDP :37690 openliero 16153 az 765u IPv4 1479840 0t0 UDP :48699 openliero 16153 az 766u IPv4 1480546 0t0 UDP :52796 openliero 16153 az 767u IPv4 1480547 0t0 UDP :54721 openliero 16153 az 768u IPv4 1480548 0t0 UDP :36637 openliero 16153 az 769u IPv4 1480579 0t0 UDP :59541 openliero 16153 az 770u IPv4 1480580 0t0 UDP :37133 openliero 16153 az 771u IPv4 1481229 0t0 UDP :42064 openliero 16153 az 772u IPv4 1481276 0t0 UDP :51803 openliero 16153 az 773u IPv4 1481277 0t0 UDP :47318 openliero 16153 az 774u IPv4 1482195 0t0 UDP :34002 openliero 16153 az 775u IPv4 1482298 0t0 UDP :53532 openliero 16153 az 776u IPv4 1482299 0t0 UDP :46088 openliero 16153 az 777u IPv4 1482369 0t0 UDP :56998 openliero 16153 az 778u IPv4 1482370 0t0 UDP :55629 openliero 16153 az 779u IPv4 1482824 0t0 UDP :38854 openliero 16153 az 780u IPv4 1483299 0t0 UDP :35998 openliero 16153 az 781u IPv4 1483332 0t0 UDP :58956 openliero 16153 az 782u IPv4 1483333 0t0 UDP :34847 openliero 16153 az 783u IPv4 1483386 0t0 UDP :50094 openliero 16153 az 784u IPv4 1483403 0t0 UDP :40792 openliero 16153 az 785u IPv4 1483404 0t0 UDP :53316 openliero 16153 az 786u IPv4 1483474 0t0 UDP :52192 openliero 16153 az 787u IPv4 1483762 0t0 UDP :40243 openliero 16153 az 788u IPv4 1483763 0t0 UDP :36924 openliero 16153 az 789u IPv4 1483899 0t0 UDP :48711 openliero 16153 az 790u IPv4 1483962 0t0 UDP :49370 openliero 16153 az 791u IPv4 1483963 0t0 UDP :45907 openliero 16153 az 792u IPv4 1483972 0t0 UDP :33785 openliero 16153 az 793u IPv4 1483973 0t0 UDP :57988 openliero 16153 az 794u IPv4 1484007 0t0 UDP :41807 openliero 16153 az 795u IPv4 1484008 0t0 UDP :54798 openliero 16153 az 796u IPv4 1484134 0t0 UDP :52811 openliero 16153 az 797u IPv4 1484850 0t0 UDP :41145 openliero 16153 az 798u IPv4 1486980 0t0 UDP :40142 openliero 16153 az 799u IPv4 1487280 0t0 UDP :43491 openliero 16153 az 800u IPv4 1487344 0t0 UDP :47306 openliero 16153 az 801u IPv4 1487345 0t0 UDP :42196 openliero 16153 az 802u IPv4 1487849 0t0 UDP :59817 openliero 16153 az 803u IPv4 1488553 0t0 UDP :47592 openliero 16153 az 804u IPv4 1488576 0t0 UDP :60207 openliero 16153 az 805u IPv4 1488577 0t0 UDP :52011 openliero 16153 az 806u IPv4 1488635 0t0 UDP :39832 openliero 16153 az 807u IPv4 1488636 0t0 UDP :48817 openliero 16153 az 808u IPv4 1488706 0t0 UDP :60117 openliero 16153 az 809u IPv4 1488869 0t0 UDP :41153 openliero 16153 az 810u IPv4 1488870 0t0 UDP :45630 openliero 16153 az 811u IPv4 1488880 0t0 UDP :53719 openliero 16153 az 812u IPv4 1488881 0t0 UDP :40601 openliero 16153 az 813u IPv4 1489781 0t0 UDP :35801 openliero 16153 az 814u IPv4 1490014 0t0 UDP :47708 openliero 16153 az 815u IPv4 1490231 0t0 UDP :41455 openliero 16153 az 816u IPv4 1493113 0t0 UDP :35581 openliero 16153 az 817u IPv4 1493120 0t0 UDP :39055 openliero 16153 az 818u IPv4 1493121 0t0 UDP :52737 openliero 16153 az 819u IPv4 1495901 0t0 UDP :35859 openliero 16153 az 820u IPv4 1496289 0t0 UDP :40425 openliero 16153 az 821u IPv4 1496290 0t0 UDP :52780 openliero 16153 az 822u IPv4 1496291 0t0 UDP :42602 openliero 16153 az 823u IPv4 1496959 0t0 UDP :58184 openliero 16153 az 824u IPv4 1497615 0t0 UDP :57730 openliero 16153 az 825u IPv4 1499659 0t0 UDP :39645 openliero 16153 az 826u IPv4 1500955 0t0 UDP :33886 openliero 16153 az 827w REG 3,4 109 62768 /home/az/.OpenLieroX/modlog.txt openliero 16153 az 828u IPv4 1503734 0t0 UDP :34752 openliero 16153 az 829u IPv4 1503825 0t0 UDP :46481 openliero 16153 az 830u IPv4 1503826 0t0 UDP :56174 openliero 16153 az 831u IPv4 1504852 0t0 UDP :41809 openliero 16153 az 832u IPv4 1504853 0t0 UDP :47002 openliero 16153 az 833u IPv4 1504854 0t0 UDP :59110 openliero 16153 az 834u IPv4 1504855 0t0 UDP :39314 openliero 16153 az 835u IPv4 1504856 0t0 UDP :51456 openliero 16153 az 836u IPv4 1505209 0t0 UDP :42115 openliero 16153 az 837u IPv4 1505298 0t0 UDP :51083 openliero 16153 az 838u IPv4 1505299 0t0 UDP :33471 openliero 16153 az 839u IPv4 1505781 0t0 UDP :35551 openliero 16153 az 840u IPv4 1506278 0t0 UDP :47986 openliero 16153 az 841u IPv4 1506279 0t0 UDP :58219 openliero 16153 az 842u IPv4 1510896 0t0 UDP :55847 openliero 16153 az 843u IPv4 1511274 0t0 UDP :37986 openliero 16153 az 844u IPv4 1511275 0t0 UDP :43543 openliero 16153 az 845u IPv4 1511396 0t0 UDP :36297 openliero 16153 az 846u IPv4 1511447 0t0 UDP :56592 openliero 16153 az 847u IPv4 1511448 0t0 UDP :47508 openliero 16153 az 848u IPv4 1511462 0t0 UDP :50913 openliero 16153 az 849u IPv4 1511463 0t0 UDP :57060 openliero 16153 az 850u IPv4 1511484 0t0 UDP :60645 openliero 16153 az 851u IPv4 1511485 0t0 UDP :33060 openliero 16153 az 852u IPv4 1511666 0t0 UDP :57575 openliero 16153 az 853u IPv4 1511667 0t0 UDP :52418 openliero 16153 az 854u IPv4 1511722 0t0 UDP :39574 openliero 16153 az 855u IPv4 1511723 0t0 UDP :60396 openliero 16153 az 856u IPv4 1511837 0t0 UDP :59821 openliero 16153 az 857u IPv4 1512137 0t0 UDP :35701 openliero 16153 az 858u IPv4 1512327 0t0 UDP :36000 openliero 16153 az 859u IPv4 1512478 0t0 UDP :57200 openliero 16153 az 860u IPv4 1512479 0t0 UDP :33435 openliero 16153 az 861u IPv4 1512480 0t0 UDP :33420 openliero 16153 az 862u IPv4 1512481 0t0 UDP :56609 openliero 16153 az 863u IPv4 1512540 0t0 UDP :48767 openliero 16153 az 864u IPv4 1512541 0t0 UDP :33137 openliero 16153 az 865u IPv4 1512543 0t0 UDP :52599 openliero 16153 az 866u IPv4 1512544 0t0 UDP :41843 openliero 16153 az 867u IPv4 1512606 0t0 UDP :46498 openliero 16153 az 868u IPv4 1512607 0t0 UDP :52212 openliero 16153 az 869u IPv4 1512629 0t0 UDP :47152 openliero 16153 az 870u IPv4 1512630 0t0 UDP :34294 openliero 16153 az 871u IPv4 1512643 0t0 UDP :53667 openliero 16153 az 872u IPv4 1512644 0t0 UDP :56387 openliero 16153 az 873u IPv4 1512693 0t0 UDP :55987 openliero 16153 az 874u IPv4 1512694 0t0 UDP :55544 openliero 16153 az 875u IPv4 1512695 0t0 UDP :34232 openliero 16153 az 876u IPv4 1512696 0t0 UDP :54836 openliero 16153 az 877u IPv4 1512697 0t0 UDP :42021 openliero 16153 az 878u IPv4 1512698 0t0 UDP :49274 openliero 16153 az 879u IPv4 1512699 0t0 UDP :42235 openliero 16153 az 880u IPv4 1512700 0t0 UDP :43516 openliero 16153 az 881u IPv4 1512826 0t0 UDP :37416 openliero 16153 az 882u IPv4 1512831 0t0 UDP :55422 openliero 16153 az 883u IPv4 1512832 0t0 UDP :33194 openliero 16153 az 884u IPv4 1513047 0t0 UDP :45877 openliero 16153 az 885u IPv4 1513048 0t0 UDP :43269 openliero 16153 az 886u IPv4 1513049 0t0 UDP :46982 openliero 16153 az 887u IPv4 1513050 0t0 UDP :35207 openliero 16153 az 888u IPv4 1513055 0t0 UDP :58437 openliero 16153 az 889u IPv4 1513056 0t0 UDP :55817 openliero 16153 az 890u IPv4 1513070 0t0 UDP :44682 openliero 16153 az 891u IPv4 1513071 0t0 UDP :43958 openliero 16153 az 892u IPv4 1513072 0t0 UDP :33975 openliero 16153 az 893u IPv4 1513073 0t0 UDP :38970 openliero 16153 az 894u IPv4 1513087 0t0 UDP :41787 openliero 16153 az 895u IPv4 1513088 0t0 UDP :54589 openliero 16153 az 896u IPv4 1513099 0t0 UDP :52213 openliero 16153 az 897u IPv4 1513100 0t0 UDP :56167 openliero 16153 az 898u IPv4 1513101 0t0 UDP :49993 openliero 16153 az 899u IPv4 1513102 0t0 UDP :59207 openliero 16153 az 900u IPv4 1513107 0t0 UDP :59010 openliero 16153 az 901u IPv4 1513593 0t0 UDP :52755 openliero 16153 az 902u IPv4 1513595 0t0 UDP :53358 openliero 16153 az 903u IPv4 1513596 0t0 UDP :57330 openliero 16153 az 904u IPv4 1514186 0t0 UDP :56108 openliero 16153 az 905u IPv4 1515055 0t0 UDP :48358 openliero 16153 az 906u IPv4 1515056 0t0 UDP :36630 openliero 16153 az 907u IPv4 1515057 0t0 UDP :33826 openliero 16153 az 908u IPv4 1515111 0t0 UDP :57745 openliero 16153 az 909u IPv4 1515319 0t0 UDP :50265 openliero 16153 az 910u IPv4 1515320 0t0 UDP :58398 openliero 16153 az 911u IPv4 1515321 0t0 UDP :42718 openliero 16153 az 912u IPv4 1515322 0t0 UDP :36307 openliero 16153 az 913u IPv4 1515323 0t0 UDP :36500 openliero 16153 az 914u IPv4 1515324 0t0 UDP :53197 openliero 16153 az 915u IPv4 1517940 0t0 UDP :58856 openliero 16153 az 916u IPv4 1518708 0t0 UDP :54315 openliero 16153 az 917u IPv4 1519806 0t0 UDP :55880 openliero 16153 az 918u IPv4 1519807 0t0 UDP :40249 openliero 16153 az 919u IPv4 1519808 0t0 UDP :43417 openliero 16153 az 920u IPv4 1520039 0t0 UDP :45604 openliero 16153 az 921u IPv4 1521762 0t0 UDP *:33664 openliero 16153
Submitted by albertzeyer
@DC: I did some cleanup in the Event class (or more correct: I changed the way the handlers are stored). Do you still see any leaks or a lot of memory consumption there?
Submitted by albertzeyer
The new socket class should fix (hopefully) the issues with too many open ports.
Submitted by albertzeyer
I think this is fixed. I am running a dedicated server now on both my local PC and my home server and it's running just fine, without taking too much memory. On my local PC, after 16h runtime, I still have only 95MB memory usage by OLX.
I'll close this now.
Submitted by albertzeyer
I again have this problem.
Here is a log: http://134.130.188.214:8000/~az/openlierox/olx.log.r4760
I also have the coredump, which is about 3.1 GB big.
Submitted by albertzeyer
==2005== Memcheck, a memory error detector. ==2005== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al. ==2005== Using LibVEX rev 1884, a library for dynamic binary translation. ==2005== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP. ==2005== Using valgrind-3.4.1, a dynamic binary instrumentation framework. ==2005== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al. ==2005== For more details, rerun with: -v ==2005== H: OpenLieroX/0.57_beta9_r4825 is starting ... H: This is a DEBUG build. n: Free memory: 3785 MB n: Current time: Thu Aug 13 16:33:06 2009 n: ThreadPool: creating 40 threads ... n: I have now the following searchpaths (in this order): n: /home/az/.OpenLieroX n: . n: /home/az/Programmierung/OpenLieroX/share/gamedir n: /home/az/Programmierung/OpenLieroX/tools/GameCompiler/share n: /usr/share/games/OpenLieroX n: /usr/share/OpenLieroX n: And that's all. n: Reading game options from /home/az/.OpenLieroX/cfg/options.cfg n: Will write game options to /home/az/.OpenLieroX/cfg/options.cfg n: the option "Game.ScreenShaking" defined in cfg/options.cfg is unknown n: the option "GameInfo.ForceScreenShaking" defined in cfg/options.cfg is unknown n: Default theme is used H: Unknown options were found. n: DONE loading options n: Installing CrashHandler .. no signal handler with these settings n: Loading network texts... DONE n: Loading taunts... DONE n: IpToCountryDB: reading ip_to_country.csv ... n: Hello there, I am initializing me now... H: DEDICATED MODE n: soundsystem completly disabled n: AutoSetupHTTPProxy is disabled, not using any proxy H: SmartPointer collision detector initialized n: Loading: Initializing client and server n: Loading: Initializing game entities n: Loading: Loading graphics W: could not load image data/frontend/speedtest.png backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox(_ZN6Logger19LockedStreamWrapperlsEPFRS_S1_E+0x20) [0x813908e] bin/openlierox(_Z20Load_Image_WithAlphaR12SmartPointerI11SDL_Surface10NopFunctorIPvEERKN9stlpd_std12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEE+0x129) [0x82928bf] bin/openlierox(_ZN13DeprecatedGUI12LoadGraphicsEv+0x7ce) [0x828a725] bin/openlierox(_Z16InitializeLieroXv+0x1621) [0x81347b7] bin/openlierox(main+0x9a4) [0x8136211] /lib/libc.so.6(__libc_start_main+0xe5) [0x45ae725] bin/openlierox [0x8130911] n: Loading: Initializing console n: Loading: Loading sounds n: Loading: Loading player profiles n: Dedicated server: running script "/home/az/Programmierung/openlierox/share/gamedir/scripts/dedicated_control" n: Initializing ready n: Loading: Initializing menu system n: Loading: Loading main menu n: Loading: Loading Physics Engine n: PhysicsEngine LX56 physics loaded n: Loading: Done! Starting menu n: Current cache size: 4 MB W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: DedicatedControl: message: 2009-08-13 16:33:43 -- INFO -- Waiting for level list ... H: DedicatedControl: message: 2009-08-13 16:33:45 -- INFO -- Waiting for mod list ... n: IpToCountry Database: reading finished, 88037 entries, 20.811 seconds n: Server max upload bandwidth is 1342100 bytes/s H: server started on 127.0.0.1:23400 W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Still locked after 5 seconds. Current threads: n: thread 'queued task handler': working n: thread 'IpToCountry loader': ready but was not cleaned up n: thread 'cache timer': working n: thread 'IngameConsole handler': working n: thread 'Ded stdin watcher': working n: thread 'Ded pipe watcher': working n: thread 'NL_READ_STATUS watcher': working n: thread 'NL_ERROR_STATUS watcher': working n: thread 'mainloop': working n: thread 'main lock detector': working n: thread 'HTTP helper': ready but was not cleaned up H: Free system memory: 3802432 KB H: Cache size: 6406 KB n: Client connect to 127.0.0.1:23400 n: sending challenge request to 127.0.0.1:23400 n: Server is using OpenLieroX/0.57_beta9_r4825 n: CClient: got challenge response from OpenLieroX/0.57_beta9_r4825 server n: Current cache size: 6 MB n: GameServer: our local client has connected n: CheckForFillWithBots: adding 3 bots H: Worm added: CPU 4 (id 0, team 0) H: Worm added: CPU 1 (id 1, team 0) H: Worm added: K1ll0r (id 2, team 0) H: DedicatedControl: message: Preset 8Bit H: DedicatedControl: message: 2009-08-13 16:34:14 -- INFO -- Dedicated_control started n: Current cache size: 6 MB n: GameServer::StartGame(), mod: 8-Bit Warfare v1.2, time: Thu Aug 13 16:34:29 2009 W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] n: CMap::Load: level levels/Alien Hood.lxl is in image format n: LoadTheme: Theme dirt already loaded n: Server Map loadtime: 4.285 seconds n: modLog: Loading game mod file 8-Bit Warfare v1.2/script.lgs n: Server Mod loadtime: 0.127001 seconds n: preparing game mode Death Match n: MaxFPS is 95 n: GameLoopStart n: Client: Got ParsePrepareGame n: Client: preparing worm 0:CPU 4 for battle n: Client: preparing worm 1:CPU 1 for battle n: Client: preparing worm 2:K1ll0r for battle H: Client: we are ready, waiting now for start game signal n: Server:ParseImReady: weapons for 0:CPU 4: Lolo Eggs, Kirby Air, Music Blaster, Machine Gun, Tank Robotrons n: Server:ParseImReady: weapons for 1:CPU 1: RPG Battle, Machine Gun, Sinistar, Defender Laser, Pacman n: Server:ParseImReady: weapons for 2:K1ll0r: Morph-Ball Bombs, Bad Graphics, Atomic Fire, Missile Base, Missile Strike n: Server: client local(OpenLieroX/0.57_beta9_r4825)(0 'CPU 4', 1 'CPU 1', 2 'K1ll0r') got ready H: Server: BeginMatch H: Server 'ultimate ded server' game state: H: * playing, Death Match H: * level=Hood Alien, mod=8-Bit Warfare v1.2 H: * maxkills=20, lives=-2, timelimit=366 (curtime=0) H: + 0:'CPU 4'(bot), alive, lives=-2, kills=0 on local(OpenLieroX/0.57_beta9_r4825) H: + 1:'CPU 1'(bot), alive, lives=-2, kills=0 on local(OpenLieroX/0.57_beta9_r4825) H: + 2:'K1ll0r'(bot), alive, lives=-2, kills=0 on local(OpenLieroX/0.57_beta9_r4825) n: Client:ParseCLReady: weapons for 0:CPU 4: Lolo Eggs, Kirby Air, Music Blaster, Machine Gun, Tank Robotrons n: Client:ParseCLReady: weapons for 1:CPU 1: RPG Battle, Machine Gun, Sinistar, Defender Laser, Pacman n: Client:ParseCLReady: weapons for 2:K1ll0r: Morph-Ball Bombs, Bad Graphics, Atomic Fire, Missile Base, Missile Strike n: Client: get BeginMatch signal W: deltatime 0.538 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] n: Current cache size: 13 MB W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.229 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.747 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.824 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.037 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.867 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.755 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.569 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.256 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.784 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.753 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.61 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.554 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.577 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.6 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.548 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.54 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.52 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.352 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.796 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.844 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.013 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.709 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.626 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.565 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.739 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.577 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.527 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.528 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.549 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.562 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.537 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.55 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.709 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.69 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.532 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.556 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.521 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.531 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.577 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.718 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.367 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.175 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.927 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.047 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Worm joined: [NM] NIGHT TERROR (id 3, from 212.179.65.183:23400(OpenLieroX/0.57_beta8)) n: CheckForFillWithBots: removing 1 bots W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Worm left: K1ll0r (id 2): kicked local worm (too much players, bot not needed anymore) n: using max upload rate 1310.64 kb/sec W: deltatime 1.235 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.533 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.085 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Script Dedicated: getWormPing : ID 2 not in use W: deltatime 0.869 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.827 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Script Dedicated: getWormPing : ID 2 not in use H: Script Dedicated: getWormPing : ID 2 not in use n: CHAT: [NM] NIGHT TERROR: hi? W: deltatime 0.539 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] H: Worm left: [NM] NIGHT TERROR (id 3): removed client (dropped client (client disconnected)) n: CheckForFillWithBots: adding 1 bots H: Worm added: CPU 1 (id 2, team 0) W: deltatime 1.176 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.88 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.751 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.829 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.852 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.852 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.864 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.663 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.688 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.192 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.709 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.678 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.649 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.106 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.711 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.866 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.709 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.922 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.688 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.893 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.093 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.845 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.792 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.974 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.826 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.517 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: possible lock of game thread detected backtrace() returned 10 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8131cf3] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.245 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.757 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.069 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 1.015 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.992 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.992 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.639 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.627 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.518 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.634 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.55 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.691 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.761 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.675 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.656 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.611 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.807 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.672 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.578 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.51 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0x5e) [0x4666c0e] W: deltatime 0.655 is too high backtrace() returned 11 addresses bin/openlierox(_Z19DumpCallstackPrintfPv+0x25) [0x84c29d8] bin/openlierox [0x84c4e5c] bin/openlierox(_ZN6Logger5flushEv+0x20) [0x84c5614] bin/openlierox(_Z4endlR6Logger+0x3e) [0x813cdd6] bin/openlierox [0x8132d12] bin/openlierox [0x83ef582] bin/openlierox(_ZN10ThreadPool13threadWrapperEPv+0x2fb) [0x83f0c23] /usr/lib/libSDL-1.2.so.0 [0x40675ff] /usr/lib/libSDL-1.2.so.0 [0x40ab4a5] /lib/libpthread.so.0 [0x40e715f] /lib/libc.so.6(clone+0
Submitted by albertzeyer
This is the link to the last log: http://134.130.188.214:8000/~az/openlierox/olx.log.r4825.valgrind2
Submitted by albertzeyer
It seems to be STLport related. I have recompiled it without STLport and have runned it for about 3 hours in Valgrind and no single leak (also no still reachable memory).
Submitted by albertzeyer
Log of OLX without STLport: http://134.130.188.214:8000/~az/openlierox/olx.log.r4830
Submitted by sf-robot
This Tracker item was closed automatically by the system. It was previously set to a Pending status, and the original submitter did not respond within 14 days (the time period specified by the administrator of this Tracker).
Submitted by albertzeyer
The problem is still there, also without STLport. On my server (rev4900), I was again getting memory problems (error while allocating memory for map).
Submitted by albertzeyer
If anyone sees this again, please enable the use of my recently added MemStats system and attach some output.
Submitted by albertzeyer
Seems fixed for me in the recent 0.58 betas (beta5, beta6, current git). At least I have the ded server running for several days and OLX has not really more mem usage than after the startup.
Please be careful with the @ character, I got 20 new messages because you mentioned my github username.
Whoops, sorry, it happens that you have the same initials than the nick of one of our developers. :) And I have imported all the issues from SourceForge.
Interesting project btw, I've never seen the source code of a game before ;)
Feel free to play around with the source. :) It isn't really complicated. The biggest issue is that the code has grown quite big so you might feel a bit lost at the beginning.
I wrote some introduction where to start in the code here: http://www.openlierox.net/wiki/index.php/OpenLieroX_source_code
Converted from SourceForge issue 2802377, submitted by albertzeyer
My server often is killing OLX after some hours of runtime because too much memory usage. I don't think this is a memory leak (in its main sense) because it clears all of it in the end (according to Valgrind). Perhaps it is some more hard-to-find memory leak where we still have some reference to it (and also clean it up correctly in the end) but which is not really needed or will always get allocated again and again or something like that. I don't know any good tools to see at a specific time which objects takes most of memory, so I coudln't really do much testing yet (do you know any tools which can do that?). All I know is that my server always kills OLX because of this:
mysqld invoked oom-killer: gfp_mask=0x1201d2, order=0, oomkilladj=0 Pid: 4831, comm: mysqld Not tainted 2.6.26.7 #4 [] oom_kill_process+0x4f/0x194
[] out_of_memory+0x14e/0x17f
[] alloc_pages_internal+0x29d/0x333
[] alloc_pages+0x7/0x9
[] __do_page_cache_readahead+0x7c/0x159
[] do_page_cache_readahead+0x3d/0x49
[] filemap_fault+0x15a/0x338
[] elv_next_request+0x141/0x14d
[] __do_fault+0x3f/0x2bd
[] handle_mm_fault+0x247/0x49e
[] do_page_fault+0x21b/0x52a
[] do_page_fault+0x0/0x52a
[] error_code+0x72/0x78
Mem-info: DMA per-cpu: CPU 0: hi: 0, btch: 1 usd: 0 Normal per-cpu: CPU 0: hi: 186, btch: 31 usd: 165 Active:42626 inactive:45573 dirty:1 writeback:0 unstable:0 free:1004 slab:3619 mapped:374 pagetables:740 bounce:0 DMA free:1556kB min:104kB low:128kB high:156kB active:5024kB inactive:4788kB present:16256kB pages_scanned:17123 all_unreclaimable? yes lowmem_reserve[]: 0 365 365 Normal free:2460kB min:2388kB low:2984kB high:3580kB active:165480kB inactive:177504kB present:373824kB pages_scanned:919991 all_unreclaimable? yes lowmem_reserve[]: 0 0 0 DMA: 1_4kB 2_8kB 0_16kB 0_32kB 2_64kB 1_128kB 1_256kB 0_512kB 1_1024kB 0_2048kB 0_4096kB = 1556kB Normal: 33_4kB 3_8kB 2_16kB 1_32kB 3_64kB 2_128kB 1_256kB 1_512kB 1_1024kB 0_2048kB 0_4096kB = 2460kB 6259 total pagecache pages Swap cache: add 721274, delete 721273, find 175051/211709 Free swap = 0kB Total swap = 1018028kB 98288 pages of RAM 0 pages of HIGHMEM 1947 reserved pages 15386 pages shared 1 pages swap cached 1 pages dirty 0 pages writeback 374 pages mapped 3619 pages slab 740 pages pagetables Out of memory: kill process 2067 (start.sh) score 3822181 or a child Killed process 2069 (openlierox)