]> git.sesse.net Git - cubemap/blob - state.proto
5d38a6bd06df19f66e09baad11b21ee00f83214c
[cubemap] / state.proto
1 // Corresponds to struct Client.
2 message ClientProto {
3         optional int32 sock = 1;
4         optional string remote_addr = 8;
5         optional int64 connect_time = 9;
6         optional int32 state = 2;
7         optional bytes request = 3;
8         optional string stream_id = 4;
9         optional bytes header_or_error = 5;
10         optional int64 header_or_error_bytes_sent = 6;
11         optional int64 stream_pos = 7;
12         optional int64 bytes_sent = 10;
13         optional int64 bytes_lost = 11;
14         optional int64 num_loss_events = 12;
15 };
16
17 // Corresponds to struct Stream.
18 message StreamProto {
19         optional bytes http_header = 6;
20         optional bytes stream_header = 7;
21         optional bytes data = 2;
22         optional int64 backlog_size = 5 [default=1048576];
23         optional int64 bytes_received = 3;
24         optional string stream_id = 4;
25
26         // Older versions stored the HTTP and video headers together in this field.
27         optional bytes header = 1;
28 };
29
30 // Corresponds to class Input.
31 message InputProto {
32         optional int32 state = 1;
33         optional string url = 3;
34         optional bytes request = 4;
35         optional int32 request_bytes_sent = 5;
36         optional bytes response = 6;
37         optional bytes http_header = 10;
38         optional bytes pending_data = 7;
39         optional bool has_metacube_header = 8;
40         optional int32 sock = 9;
41 };
42
43 // Corresponds to class Acceptor.
44 message AcceptorProto {
45         optional int32 server_sock = 1;
46         optional int32 port = 2;
47 };
48
49 message CubemapStateProto {
50         optional int64 serialize_start_sec = 6;
51         optional int64 serialize_start_usec = 7;
52         repeated ClientProto clients = 1;
53         repeated StreamProto streams = 2;
54         repeated InputProto inputs = 5;
55         repeated AcceptorProto acceptors = 8;
56 };