mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-25 01:13:39 +10:00
31 lines
532 B
Protocol Buffer
31 lines
532 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum TorrentialBoundType {
|
|
ERROR = 0;
|
|
SERVER_GAMES_RESPONSE = 1;
|
|
VERSION_RESPONSE = 2;
|
|
GENERATE_MANIFEST = 3;
|
|
}
|
|
|
|
message TorrentialBound {
|
|
string message_id = 1;
|
|
TorrentialBoundType type = 2;
|
|
bytes data = 3;
|
|
}
|
|
|
|
enum DropBoundType {
|
|
SERVER_GAMES_QUERY = 0;
|
|
VERSION_QUERY = 1;
|
|
|
|
MANIFEST_PROGRESS = 2;
|
|
MANIFEST_LOG = 3;
|
|
MANIFEST_COMPLETE = 4;
|
|
MANIFEST_ERROR = 5;
|
|
}
|
|
|
|
message DropBound {
|
|
string message_id = 1;
|
|
DropBoundType type = 2;
|
|
bytes data = 3;
|
|
}
|