mirror of
https://github.com/edubart/otclient.git
synced 2025-10-15 03:54:54 +02:00
Bind connection and fix protocol recv without xtea
This commit is contained in:
@@ -631,6 +631,9 @@ void Application::registerLuaFunctions()
|
||||
g_lua.bindClassStaticFunction<Server>("create", &Server::create);
|
||||
g_lua.bindClassMemberFunction<Server>("acceptNext", &Server::acceptNext);
|
||||
|
||||
// Connection
|
||||
g_lua.registerClass<Connection>();
|
||||
|
||||
// Protocol
|
||||
g_lua.registerClass<Protocol>();
|
||||
g_lua.bindClassStaticFunction<Protocol>("create", []{ return ProtocolPtr(new Protocol); });
|
||||
|
@@ -138,12 +138,6 @@ void Protocol::internalRecvData(uint8* buffer, uint16 size)
|
||||
g_logger.traceError("failed to decrypt message");
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
int size = m_inputMessage->getU16();
|
||||
if(size != m_inputMessage->getUnreadSize()) {
|
||||
g_logger.traceError("invalid message size");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
onRecv(m_inputMessage);
|
||||
|
Reference in New Issue
Block a user