mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-12 22:31:02 -05:00
- Added asset session downloader - Added on off option logging request types - Updated proto files - Updated readme.md - Smoother setup process - Added various console commands - Added claim codename packet - Added encounter packet - Added *fixed* download url packet - Various changes, cant remember at all
22 lines
495 B
Protocol Buffer
Vendored
22 lines
495 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PlayerData.proto";
|
|
|
|
message ClaimCodenameResponse {
|
|
string codename = 1;
|
|
string user_message = 2;
|
|
bool is_assignable = 3;
|
|
.POGOProtos.Networking.Responses.ClaimCodenameResponse.Status status = 4;
|
|
.POGOProtos.Data.PlayerData updated_player = 5;
|
|
|
|
enum Status {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
CODENAME_NOT_AVAILABLE = 2;
|
|
CODENAME_NOT_VALID = 3;
|
|
CURRENT_OWNER = 4;
|
|
CODENAME_CHANGE_NOT_ALLOWED = 5;
|
|
}
|
|
}
|