Skip to content

Commit

Permalink
Allow RoomService.SendData to use participant identities
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzhao committed Sep 8, 2023
1 parent c32b942 commit 01a7135
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion livekit_room.proto
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,13 @@ message SendDataRequest {
string room = 1;
bytes data = 2;
DataPacket.Kind kind = 3;
repeated string destination_sids = 4;
// mark deprecated
repeated string destination_sids = 4 [deprecated=true];
// when set, only forward to these identities
repeated string destination_identities = 6;
optional string topic = 5;

// NEXT_ID: 7
}

message SendDataResponse {
Expand Down

0 comments on commit 01a7135

Please sign in to comment.