POGOserver/POGOProtos/Networking/Envelopes/Unknown6.proto
Felix e9ccb672dc Added mongodb, many updates & bug fixes
- 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
2016-08-08 22:25:28 +02:00

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
}
}