#6 LoginServer dumps large packets (32k+)

Zamknięty
otworzone 4 lat temu przez image · 1 komentarzy
image skomentował 4 lat temu

Unknown LoginSOPcode: 0x201e size:32088 from ...

Unknown LoginSOPcode: 0x201e size:32088 from ...
image skomentował 4 lat temu
Współpracownik

This was fixed in the base commit LoginServer/client.cpp

        default: {
            char* name = (char*)app->GetOpcodeName();
            if(name)
                cout << name;
            else
                cout << "Unknown";
            cout << " Packet: OPCode: 0x" << hex << setw(2) << setfill('0') << app->GetOpcode() << dec << ", size: " << setw(5) << setfill(' ') << app->Size() << " from " << GetAccountName() << endl;
            if (app->Size() < 128)
                DumpPacket(app);

app->Size() < 128 .. check

This was fixed in the base commit LoginServer/client.cpp default: { char* name = (char*)app->GetOpcodeName(); if(name) cout << name; else cout << "Unknown"; cout << " Packet: OPCode: 0x" << hex << setw(2) << setfill('0') << app->GetOpcode() << dec << ", size: " << setw(5) << setfill(' ') << app->Size() << " from " << GetAccountName() << endl; if (app->Size() < 128) DumpPacket(app); app->Size() < 128 .. check
Zaloguj się, aby dołączyć do tej rozmowy.
Ładowanie...
Anuluj
Zapisz
Nie ma jeszcze treści.