X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=state.proto;h=cfad404da66eca1cc4d77b8f476b5d9416ebff90;hb=7c4707af4ea7af05e34bc0414d18d9fd54e4f23e;hp=1d5cf1702ee3081ef1e9a94e611256221979067a;hpb=656d6863b47e1791a310397d88e25fa897e05012;p=cubemap diff --git a/state.proto b/state.proto index 1d5cf17..cfad404 100644 --- a/state.proto +++ b/state.proto @@ -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; };