• 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 admin.log

valivan601

New Member
Joined
Apr 13, 2011
Messages
365
Reaction score
1
Hello anyone can say what is this in my admins log this make server lag and crashes a lot REALLY NEED HELP!!!


Code:
[26/1/2012 11:46:32] (Error - void ServicePort::open(IPAddressList, uint16_t)) NETWORK: O endereço solicitado não é válido no contexto
[26/1/2012 11:53:35] (Error - void ServicePort::open(IPAddressList, uint16_t)) NETWORK: O endereço solicitado não é válido no contexto

maybe this help

server.cpp
Code:
void ServicePort::open(IPAddressList ips, uint16_t port)
{
	m_pendingStart = false;
	m_serverPort = port;

	bool error = false;
	IPAddressList pendingIps;
	for(IPAddressList::iterator it = ips.begin(); it != ips.end(); ++it)
	{
		try
		{
			Acceptor_ptr tmp(new boost::asio::ip::tcp::acceptor(m_io_service,
				boost::asio::ip::tcp::endpoint(*it, m_serverPort)));
			tmp->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));

			accept(tmp);
			m_acceptors.push_back(tmp);
		}
		catch(std::exception& e)
		{
			if(m_logError)
			{
				LOG_MESSAGE(LOGTYPE_ERROR, e.what(), "NETWORK")
				pendingIps.push_back(*it);
				if(!error)
					error = true;
			}
		}
	}

	if(error)
	{
		m_logError = false;
		m_pendingStart = true;
		Scheduler::getInstance().addEvent(createSchedulerTask(5000, boost::bind(
			&ServicePort::services, boost::weak_ptr<ServicePort>(shared_from_this()), pendingIps, m_serverPort)));
	}
}
 
Last edited:
in my logs folder there's a missing folder talkactions i create it and now logs from admins are saving.

Could this make this error on admin.log and solve my problem?
 
chaca ai tbm se vc nao tem uma pasta faltando na pasta logs por deafult sao 4 pastas bots,chat,server e talkactions

se alguma dessas estivr faltando principalmente a talkactions seu server pode laga ate trava.
 
still receiving this msg any fix for it?

[26/1/2012 11:46:32] (Error - void ServicePort::eek:pen(IPAddressList, uint16_t)) NETWORK: O endereço solicitado não é válido no contexto
 
cara, eu baxei o crystal server denovo, e deu o carsh, ele limpinho, isso e problema do desenvolvedor, que fez um server tosco, ou da rede, não sei :(
 
Back
Top