#6 LoginServer dumps large packets (32k+)

已關閉
image4 年之前創建 · 1 條評論

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

Unknown LoginSOPcode: 0x201e size:32088 from ...
image 評論 4 年之前'
協同者

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
image4 年之前 關閉
登入 才能加入這對話。
正在加載...
取消
保存
尚未有任何內容