Skip to content

Commit 886b832

Browse files
committed
Renumber
1 parent 10a9787 commit 886b832

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

protobufs/livekit_rtc.proto

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,18 +173,18 @@ message AddTrackRequest {
173173
}
174174

175175
message PublishDataTrackRequest {
176-
// Human-readable identifier (e.g., `geoLocation`, `servoPosition.x`, etc.), unique per publisher.
177-
string name = 1;
178-
179176
// 16-bit identifier attached to packets, unique per publisher.
180-
uint32 handle = 2;
177+
uint32 handle = 1;
178+
179+
// Human-readable identifier (e.g., `geoLocation`, `servoPosition.x`, etc.), unique per publisher.
180+
string name = 2;
181181

182182
// MIME type of the data sent over the track (e.g., `application/json`).
183183
// This must be a valid MIME type as defined by RFC 2046.
184-
string mime_type = 2;
184+
string mime_type = 3;
185185

186186
// Method used for end-to-end encryption (E2EE) on frame payloads.
187-
Encryption.Type encryption = 3;
187+
Encryption.Type encryption = 4;
188188
}
189189

190190
message PublishDataTrackResponse {
@@ -201,7 +201,7 @@ message UnpublishDataTrackRequest {
201201

202202
message UnpublishDataTrackResponse {
203203
// Handle of the track that was unpublished.
204-
uint32 handle = 2;
204+
uint32 handle = 1;
205205
}
206206

207207
message DataTrackSubscriberHandles {

0 commit comments

Comments
 (0)