mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-04 18:46:37 +00:00
Position updates with do_pos_update test call
This commit is contained in:
@@ -104,6 +104,15 @@ bool WebInterfaceConnection::Process()
|
||||
zoneserver_list.SendPacket(pack); // Send to all zones to test
|
||||
break;
|
||||
}
|
||||
case ServerOP_WIClientRequest:
|
||||
{
|
||||
std::string Data;
|
||||
WI_Client_Request_Struct* WICR = (WI_Client_Request_Struct*)pack->pBuffer;
|
||||
Data.assign(WICR->JSON_Data, pack->size - 64);
|
||||
_log(WEB_INTERFACE__ERROR, "Recieved ServerOPcode from WebInterface 0x%04x \nSize %d\nData '%s' from client:\n%s\n", pack->opcode, pack->size, Data.c_str(), WICR->Client_UUID);
|
||||
zoneserver_list.SendPacket(pack); // Send to all zones to test
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
_log(WEB_INTERFACE__ERROR, "Unknown ServerOPcode from WebInterface 0x%04x, size %d", pack->opcode, pack->size);
|
||||
|
||||
@@ -1320,6 +1320,7 @@ bool ZoneServer::Process() {
|
||||
}
|
||||
case ServerOP_WIWorldResponse:
|
||||
{
|
||||
_log(WEB_INTERFACE__ERROR, "ServerOP_WIWorldResponse for WebInterface 0x%04x, size %d", pack->opcode, pack->size);
|
||||
WILink.SendPacket(pack);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user