mirror of
https://github.com/therealKyp/Earth-and-Beyond-server
synced 2026-08-13 22:23:03 -04:00
28 lines
746 B
C++
28 lines
746 B
C++
// SectorServerToSectorServer.cpp
|
|
|
|
/******************************************************
|
|
* ////////////////////////////////////////////// *
|
|
* // SECTOR SERVER TO SECTOR SERVER OPCODES // *
|
|
* ////////////////////////////////////////////// *
|
|
******************************************************/
|
|
|
|
#include "Net7.h"
|
|
#include "Connection.h"
|
|
#include "Opcodes.h"
|
|
#include "ServerManager.h"
|
|
#include "PacketStructures.h"
|
|
|
|
void Connection::ProcessSectorServerToSectorServerOpcode(short opcode, short bytes)
|
|
{
|
|
switch (opcode)
|
|
{
|
|
case ENB_OPCODE_7802_REQUEST_CHARACTER_DATA :
|
|
SendCharacterData();
|
|
break;
|
|
|
|
default :
|
|
LogMessage("ProcessSectorServerToSectorServerOpcode - UNRECOGNIZED OPCODE 0x%04x\n", opcode);
|
|
break;
|
|
}
|
|
}
|
|
|