mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 09:31:30 +00:00
81 lines
1.6 KiB
C++
81 lines
1.6 KiB
C++
#include "../common/global_define.h"
|
|
#include "../common/eqemu_logsys.h"
|
|
#include "ucs.h"
|
|
#include "world_config.h"
|
|
|
|
#include "../common/misc_functions.h"
|
|
#include "../common/md5.h"
|
|
#include "../common/packet_dump.h"
|
|
|
|
UCSConnection::UCSConnection()
|
|
{
|
|
Stream = 0;
|
|
}
|
|
|
|
void UCSConnection::SetConnection(std::shared_ptr<EQ::Net::ServertalkServerConnection> inStream)
|
|
{
|
|
if (Stream && Stream->Handle())
|
|
{
|
|
LogInfo("Incoming UCS Connection while we were already connected to a UCS");
|
|
Stream->Handle()->Disconnect();
|
|
}
|
|
|
|
Stream = inStream;
|
|
if (Stream) {
|
|
Stream->OnMessage(std::bind(&UCSConnection::ProcessPacket, this, std::placeholders::_1, std::placeholders::_2));
|
|
}
|
|
}
|
|
|
|
void UCSConnection::ProcessPacket(uint16 opcode, EQ::Net::Packet &p)
|
|
{
|
|
if (!Stream)
|
|
return;
|
|
|
|
ServerPacket tpack(opcode, p);
|
|
ServerPacket *pack = &tpack;
|
|
|
|
switch (opcode)
|
|
{
|
|
case 0:
|
|
break;
|
|
|
|
case ServerOP_KeepAlive:
|
|
{
|
|
// ignore this
|
|
break;
|
|
}
|
|
case ServerOP_ZAAuth:
|
|
{
|
|
LogInfo("Got authentication from UCS when they are already authenticated");
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
LogInfo("Unknown ServerOPcode from UCS {:#04x}, size [{}]", opcode, pack->size);
|
|
DumpPacket(pack->pBuffer, pack->size);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void UCSConnection::SendPacket(ServerPacket* pack)
|
|
{
|
|
if (!Stream)
|
|
return;
|
|
|
|
Stream->SendPacket(pack);
|
|
}
|
|
|
|
void UCSConnection::SendMessage(const char *From, const char *Message)
|
|
{
|
|
auto pack = new ServerPacket(ServerOP_UCSMessage, strlen(From) + strlen(Message) + 2);
|
|
|
|
char *Buffer = (char *)pack->pBuffer;
|
|
|
|
VARSTRUCT_ENCODE_STRING(Buffer, From);
|
|
VARSTRUCT_ENCODE_STRING(Buffer, Message);
|
|
|
|
SendPacket(pack);
|
|
safe_delete(pack);
|
|
}
|