mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
Remove Log.Hex completely for real
This commit is contained in:
parent
87e212046f
commit
2ecb91d075
@ -68,7 +68,6 @@ bool LauncherLink::Process() {
|
|||||||
|
|
||||||
ServerPacket *pack = 0;
|
ServerPacket *pack = 0;
|
||||||
while((pack = tcpc->PopPacket())) {
|
while((pack = tcpc->PopPacket())) {
|
||||||
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
|
|
||||||
if (!authenticated) {
|
if (!authenticated) {
|
||||||
if (WorldConfig::get()->SharedKey.length() > 0) {
|
if (WorldConfig::get()->SharedKey.length() > 0) {
|
||||||
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {
|
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {
|
||||||
|
|||||||
@ -97,7 +97,6 @@ bool LoginServer::Process() {
|
|||||||
while((pack = tcpc->PopPacket()))
|
while((pack = tcpc->PopPacket()))
|
||||||
{
|
{
|
||||||
Log.Out(Logs::Detail, Logs::World_Server,"Recevied ServerPacket from LS OpCode 0x04x",pack->opcode);
|
Log.Out(Logs::Detail, Logs::World_Server,"Recevied ServerPacket from LS OpCode 0x04x",pack->opcode);
|
||||||
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
|
|
||||||
|
|
||||||
switch(pack->opcode) {
|
switch(pack->opcode) {
|
||||||
case 0:
|
case 0:
|
||||||
|
|||||||
@ -177,7 +177,6 @@ bool ZoneServer::Process() {
|
|||||||
}
|
}
|
||||||
ServerPacket *pack = 0;
|
ServerPacket *pack = 0;
|
||||||
while((pack = tcpc->PopPacket())) {
|
while((pack = tcpc->PopPacket())) {
|
||||||
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
|
|
||||||
if (!authenticated) {
|
if (!authenticated) {
|
||||||
if (WorldConfig::get()->SharedKey.length() > 0) {
|
if (WorldConfig::get()->SharedKey.length() > 0) {
|
||||||
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {
|
if (pack->opcode == ServerOP_ZAAuth && pack->size == 16) {
|
||||||
|
|||||||
@ -141,7 +141,6 @@ void WorldServer::Process() {
|
|||||||
ServerPacket *pack = 0;
|
ServerPacket *pack = 0;
|
||||||
while((pack = tcpc.PopPacket())) {
|
while((pack = tcpc.PopPacket())) {
|
||||||
Log.Out(Logs::Detail, Logs::Zone_Server, "Got 0x%04x from world:", pack->opcode);
|
Log.Out(Logs::Detail, Logs::Zone_Server, "Got 0x%04x from world:", pack->opcode);
|
||||||
Log.Hex(Logs::Netcode, pack->pBuffer, pack->size);
|
|
||||||
switch(pack->opcode) {
|
switch(pack->opcode) {
|
||||||
case 0: {
|
case 0: {
|
||||||
break;
|
break;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user