]> git.sesse.net Git - cubemap/blob - state.proto
Set num_servers to 1 in the sample config, as that is the more typical situation.
[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 url = 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         repeated int32 data_fds = 8;
22         optional int64 backlog_size = 5 [default=1048576];
23         optional int64 bytes_received = 3;
24         optional string url = 4;
25
26         // Older versions stored the HTTP and video headers together in this field.
27         optional bytes header = 1;
28
29         // Older versions stored the data in the protobuf instead of sending file
30         // descriptors around.
31         optional bytes data = 2;
32 };
33
34 // Corresponds to class Input.
35 message InputProto {
36         optional int32 state = 1;
37         optional string url = 3;
38         optional bytes request = 4;
39         optional int32 request_bytes_sent = 5;
40         optional bytes response = 6;
41         optional bytes http_header = 10;
42         optional bytes pending_data = 7;
43         optional bool has_metacube_header = 8;
44         optional int32 sock = 9;
45 };
46
47 // Corresponds to class Acceptor.
48 message AcceptorProto {
49         optional int32 server_sock = 1;
50         optional int32 port = 2;
51 };
52
53 message CubemapStateProto {
54         optional int64 serialize_start_sec = 6;
55         optional int64 serialize_start_usec = 7;
56         repeated ClientProto clients = 1;
57         repeated StreamProto streams = 2;
58         repeated InputProto inputs = 5;
59         repeated AcceptorProto acceptors = 8;
60 };