mirror of
https://github.com/livekit/livekit.git
synced 2026-03-29 11:29:52 +00:00
17 lines
269 B
Protocol Buffer
17 lines
269 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package livekit;
|
|
|
|
// internal types, declaring in proto to get serialization for free
|
|
|
|
message Node {
|
|
string id = 1;
|
|
string ip = 2;
|
|
int32 port = 3;
|
|
NodeStats stats = 4;
|
|
}
|
|
|
|
message NodeStats {
|
|
int32 num_rooms = 1;
|
|
int32 num_clients = 2;
|
|
} |