mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-30 09:47:01 -05:00
- Added mongodb database - Removed dumps - Added jwt google auth decode plugin - Added long decode plugin - Updated protos to latest commit - Updated readme - Added avatar saving - Fixed bug, where username, level and exp didnt got displayed - Default username is "undefined" - Clear console stdin - Save players into db stdin - Seperated login/register phase - Added decode long util method
13 lines
449 B
Protocol Buffer
Vendored
13 lines
449 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Envelopes;
|
|
|
|
message Unknown6 {
|
|
int32 request_type = 1; // 5 for IAPs, 6 is unknown still
|
|
Unknown2 unknown2 = 2;
|
|
|
|
message Unknown2 {
|
|
bytes encrypted_signature = 1; // This are the bytes of POGOProtos/Networking/Envelopes/Signature.proto encrypted.
|
|
// For an example check https://github.com/keyphact/pgoapi/blob/75eba6b5b630841ee4f7c2ea983f15874fb0862d/pgoapi/rpc_api.py#L192-L212
|
|
}
|
|
}
|