X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=state.proto;h=52df32ce027ac2af18bbc272f7f8ca5c678a07cb;hp=e9a4f13293c617b09e21b923cca4d6eecae816d6;hb=7c23f706733b12405c0cb8793866b57ba5800c98;hpb=061988af511f42da3cd584b4d983177504ddc177 diff --git a/state.proto b/state.proto index e9a4f13..52df32c 100644 --- a/state.proto +++ b/state.proto @@ -22,10 +22,21 @@ message ClientProto { optional bytes tls_context = 17; // If not present, then not using TLS for this client. optional int64 tls_output_bytes_already_consumed = 18; optional bool in_ktls_mode = 19; + optional bytes x_playback_session_id = 22; + optional bool close_after_response = 23 [default=true]; + optional bool http_11 = 24 [default=false]; +}; + +// Corresponds to struct Stream::FragmentStart. +message FragmentStartProto { + optional int64 byte_position = 1; + optional double pts = 2; + optional bool begins_header = 3 [default=false]; }; // Corresponds to struct Stream. message StreamProto { + optional bool unavailable = 14 [default=false]; optional bytes http_header = 6; optional bytes stream_header = 7; repeated int32 data_fds = 8; @@ -33,6 +44,9 @@ message StreamProto { // Tag 10 is unused from 1.4.0 up (it used to be prebuffering_bytes). optional int64 bytes_received = 3; repeated int64 suitable_starting_point = 9; + repeated FragmentStartProto fragment = 11; + optional int64 first_fragment_index = 12; + optional int64 discontinuity_counter = 13; optional string url = 4; }; @@ -48,6 +62,7 @@ message InputProto { optional bytes pending_data = 7; optional bool has_metacube_header = 8; optional int32 sock = 9; + optional int64 child_pid = 18 [default=-1]; optional int64 bytes_received = 11; optional int64 data_bytes_received = 12; optional int64 metadata_bytes_received = 16; @@ -70,6 +85,16 @@ message ShortResponsePool { optional bytes header_or_short_response = 1; }; +message HLSZombieProto { + optional bytes key = 1; + optional bytes remote_addr = 2; + optional bytes url = 3; + optional bytes referer = 4; + optional bytes user_agent = 5; + optional int64 expires_sec = 6; + optional int64 expires_nsec = 7; +}; + message CubemapStateProto { optional int64 serialize_start_sec = 6; optional int64 serialize_start_usec = 7; @@ -78,4 +103,5 @@ message CubemapStateProto { repeated InputProto inputs = 5; repeated AcceptorProto acceptors = 8; repeated ShortResponsePool short_response_pool = 9; + repeated HLSZombieProto hls_zombies = 10; };