-
Notifications
You must be signed in to change notification settings - Fork 43
/
meeting.proto
58 lines (44 loc) · 966 Bytes
/
meeting.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
55
56
57
58
syntax = "proto3";
message Meeting {
message PhoneNumber {
string country_code = 1;
string country_name = 2;
string country_prefix = 3;
string number = 4;
string easy_number = 5;
}
message Phones {
repeated PhoneNumber info = 1;
}
message Unknown {
string xmpp = 1;
string gw1 = 2;
string gw2 = 3;
string file = 4;
string log = 8;
}
message Trace {
string ip = 1;
}
message Room {
string user = 3;
string room_name = 4;
string connections = 10;
string tunnels = 67;
string handshake = 11; // ?
uint64 room_id = 12;
string phone_numbers = 17;
string join_info = 25;
string gmail_link = 23;
string yahoo_link = 24;
string link = 28;
string link_with_token = 44;
string call_to_action = 46;
Phones phones = 56;
}
uint32 error = 1;
string information = 2;
Room room = 3;
Trace current = 38;
repeated Unknown hosts = 27;
}