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

8 lines
150 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Envelopes;
message AuthTicket {
bytes start = 1;
uint64 expire_timestamp_ms = 2;
bytes end = 3;
}