POGOserver/POGOProtos/Networking/Envelopes/Unknown6.proto
Felix bc853908e1 Update
- Adding protos
- Adding dumps
- Simple http server
- Various packets
- Added readme
2016-08-05 20:43:56 +02:00

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