forked from livekit/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlivekit_rpc_internal.proto
54 lines (43 loc) · 1.04 KB
/
livekit_rpc_internal.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
syntax = "proto3";
package livekit;
option go_package = "github.com/livekit/protocol/livekit";
option csharp_namespace = "LiveKit.Proto";
option ruby_package = "LiveKit::Proto";
import "livekit_egress.proto";
message StartEgressRequest {
option deprecated = true;
// request metadata
string egress_id = 1;
string request_id = 2;
string sender_id = 10;
int64 sent_at = 4;
// request
oneof request {
RoomCompositeEgressRequest room_composite = 5;
TrackCompositeEgressRequest track_composite = 6;
TrackEgressRequest track = 7;
WebEgressRequest web = 11;
}
// connection info
string room_id = 3;
string token = 8;
string ws_url = 9;
}
message EgressRequest {
option deprecated = true;
// request metadata
string egress_id = 1;
string request_id = 2;
string sender_id = 5;
// request
oneof request {
UpdateStreamRequest update_stream = 3;
StopEgressRequest stop = 4;
}
}
message EgressResponse {
option deprecated = true;
EgressInfo info = 1;
string error = 2;
string request_id = 3;
}