]> git.sesse.net Git - cubemap/blobdiff - state.proto
Support multiple listening sockets. Actually mostly because it makes the code somewha...
[cubemap] / state.proto
index 1d5cf1702ee3081ef1e9a94e611256221979067a..cfad404da66eca1cc4d77b8f476b5d9416ebff90 100644 (file)
@@ -33,12 +33,21 @@ message InputProto {
        optional int32 sock = 9;
 };
 
+// Corresponds to class Acceptor.
+message AcceptorProto {
+       optional int32 server_sock = 1;
+       optional int32 port = 2;
+};
+
 message CubemapStateProto {
        optional int64 serialize_start_sec = 6;
        optional int64 serialize_start_usec = 7;
        repeated ClientProto clients = 1;
        repeated StreamProto streams = 2;
        repeated InputProto inputs = 5;
+       repeated AcceptorProto acceptors = 8;
+
+       // Deprecated. Use Acceptor instead.
        optional int32 server_sock = 3;
        optional int32 port = 4;
 };