Files
drop/torrential/proto/core.proto
T
2026-02-05 12:00:25 +11:00

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