blob: 7c1ce16e12d4c12fd888f1a21e7b62438de98c5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto3";
package whirl;
message RedirectCommand {
int32 room_number = 1;
int32 ip_1 = 2;
int32 ip_2 = 3;
int32 ip_3 = 4;
int32 ip_4 = 5;
int32 port = 6;
}
|