mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-05-03 03:15:50 -05:00
12 lines
211 B
Protocol Buffer
Vendored
12 lines
211 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 unknown1 = 1;
|
|
}
|
|
}
|