Skip to content

Commit 1d6123c

Browse files
Include SyncState in join request (#1154)
* Include SyncState in join request * generated protobuf --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ccbae81 commit 1d6123c

File tree

4 files changed

+53
-27
lines changed

4 files changed

+53
-27
lines changed

livekit/livekit_internal.pb.go

Lines changed: 29 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

livekit/livekit_rtc.pb.go

Lines changed: 20 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protobufs/livekit_internal.proto

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,10 @@ message StartSession {
177177
ReconnectReason reconnect_reason = 17;
178178
optional bool subscriber_allow_pause = 18;
179179
bool disable_ice_lite = 19;
180-
livekit.CreateRoomRequest create_room = 20;
180+
CreateRoomRequest create_room = 20;
181181
repeated livekit.AddTrackRequest add_track_requests = 21;
182-
livekit.SessionDescription publisher_offer = 22;
182+
SessionDescription publisher_offer = 22;
183+
SyncState sync_state = 23;
183184
}
184185

185186
// room info that should not be returned to clients

protobufs/livekit_rtc.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ message JoinRequest {
496496
bool reconnect = 7;
497497
ReconnectReason reconnect_reason = 8;
498498
string participant_sid = 9;
499+
SyncState sync_state = 10;
499500
}
500501

501502
message WrappedJoinRequest {

0 commit comments

Comments
 (0)