1515syntax = "proto3" ;
1616
1717package livekit ;
18- option go_package = "github.com/livekit/protocol/livekit" ;
19- option csharp_namespace = "LiveKit.Proto" ;
20- option ruby_package = "LiveKit::Proto" ;
2118
2219import "livekit_models.proto" ;
23-
2420import "logger/options.proto" ;
2521
22+ option csharp_namespace = "LiveKit.Proto" ;
23+ option go_package = "github.com/livekit/protocol/livekit" ;
24+ option ruby_package = "LiveKit::Proto" ;
25+
2626message SignalRequest {
2727 oneof message {
2828 // participant offer for publisher
@@ -316,8 +316,6 @@ message UpdateTrackSettings {
316316 uint32 priority = 8 ;
317317}
318318
319-
320-
321319message UpdateLocalAudioTrack {
322320 string track_sid = 1 ;
323321 repeated AudioTrackFeature features = 2 ;
@@ -332,9 +330,9 @@ message UpdateLocalVideoTrack {
332330message LeaveRequest {
333331 // indicates action clients should take on receiving this message
334332 enum Action {
335- DISCONNECT = 0 ; // should disconnect
336- RESUME = 1 ; // should attempt a resume with `reconnect=1` in join URL
337- RECONNECT = 2 ; // should attempt a reconnect, i. e. no `reconnect=1`
333+ DISCONNECT = 0 ; // should disconnect
334+ RESUME = 1 ; // should attempt a resume with `reconnect=1` in join URL
335+ RECONNECT = 2 ; // should attempt a reconnect, i. e. no `reconnect=1`
338336 }
339337
340338 // sent when server initiates the disconnect due to server-restart
@@ -551,7 +549,7 @@ message RequestResponse {
551549 NOT_ALLOWED = 2 ;
552550 LIMIT_EXCEEDED = 3 ;
553551 QUEUED = 4 ;
554- UNSUPPORTED_TYPE = 5 ;
552+ UNSUPPORTED_TYPE = 5 ;
555553 UNCLASSIFIED_ERROR = 6 ;
556554 INVALID_HANDLE = 7 ;
557555 INVALID_NAME = 8 ;
@@ -583,6 +581,7 @@ message ConnectionSettings {
583581 bool adaptive_stream = 2 ;
584582 optional bool subscriber_allow_pause = 3 ;
585583 bool disable_ice_lite = 4 ;
584+ optional bool auto_subscribe_data_track = 5 ;
586585}
587586
588587message JoinRequest {
@@ -618,7 +617,7 @@ message WrappedJoinRequest {
618617 }
619618
620619 Compression compression = 1 ;
621- bytes join_request = 2 ; // marshalled JoinRequest + potentially compressed
620+ bytes join_request = 2 ; // marshalled JoinRequest + potentially compressed
622621}
623622
624623message MediaSectionsRequirement {
0 commit comments