#6 LoginServer dumps large packets (32k+)

已关闭
image4 年之前创建 · 1 条评论
image 评论于 4 年之前

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 年之前 关闭
登录 并参与到对话中。
正在加载...
取消
保存
这个人很懒,什么都没留下。