X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=state.proto;h=cfad404da66eca1cc4d77b8f476b5d9416ebff90;hp=1d5cf1702ee3081ef1e9a94e611256221979067a;hb=684496ba9c7def1421d045435b6b92e80bc54c74;hpb=d9b0536b128e10447a986f7b6ea2b5c93252c80f 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; };