• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Error: [Server:onAccept] More than 100 listen errors.

Status
Not open for further replies.
Bah! :< Can somebody release it then? :(
 
Ye, an easy way to upgrade from rev 815 console to the newest who got the issue fixed...
 
Open server.cpp and replace at line 98:
Code:
			if(m_listenErrors < 100)
				openListenSocket();
			else
				std::cout << "Error: [Server::onAccept] More than 100 listen errors." << std::endl;
with:
Code:
			#ifndef __IGNORE_LISTEN_ERROR__
			if(m_listenErrors < 100)
			#endif
				openListenSocket();
			#ifndef __IGNORE_LISTEN_ERROR__
			else
				std::cout << "Error: [Server::onAccept] More than 100 listen errors." << std::endl;
			#else
			std::cout << "Warning: [Server::onAccept] More than 100 listen errors." << std::endl;
			#endif
Save and close.

Recompile the server with -D__IGNORE_LISTEN_ERROR__ compiler flag.
 
Getting compiling errors :p
 
@Jester i will compile for u a full 844 + compile files if u need.
(with the fix)
 
Done the compile and sent to Znote.
the prob was real silly.
 
ppl are playing on my serv now without thoose probs any longer, thanks Clary! :thumbup:
 
*mad* *mad* *mad* :p


shoot! Sorry, the creds especially also goes to you Elf =D

~I had wet dreamz tis nigt bout elfz ;> ~
 
I've got the same problem and can't figure it out. How do I edit this server.cpp and how do I find it? Please help :)
 
is there anyway u can release the fix? Im having this problem aswell and ive been tryig to fix what the problem was for some time now
 
Status
Not open for further replies.
Back
Top