]> git.sesse.net Git - cubemap/blobdiff - state.proto
Fix a crash when trying to get HLS fragments from a disconnected strema.
[cubemap] / state.proto
index 90d86e4170f5448f794c3be910193c74f7000e9d..c1e782fb5b71b6e64411bdc736b3a68d9b725b97 100644 (file)
@@ -23,16 +23,20 @@ message ClientProto {
        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;