Advertisement
FlyFar

meeting.proto

Dec 28th, 2023
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | Cybersecurity | 0 0
  1. syntax = "proto3";
  2.  
  3. message Meeting {
  4. message PhoneNumber {
  5. string country_code = 1;
  6. string country_name = 2;
  7. string country_prefix = 3;
  8.  
  9. string number = 4;
  10. string easy_number = 5;
  11. }
  12.  
  13. message Phones {
  14. repeated PhoneNumber info = 1;
  15. }
  16.  
  17. message Unknown {
  18. string xmpp = 1;
  19. string gw1 = 2;
  20. string gw2 = 3;
  21. string file = 4;
  22. string log = 8;
  23. }
  24.  
  25. message Trace {
  26. string ip = 1;
  27. }
  28.  
  29. message Room {
  30. string user = 3;
  31. string room_name = 4;
  32. string connections = 10;
  33. string tunnels = 67;
  34.  
  35. string handshake = 11; // ?
  36.  
  37. uint64 room_id = 12;
  38. string phone_numbers = 17;
  39. string join_info = 25;
  40.  
  41. string gmail_link = 23;
  42. string yahoo_link = 24;
  43.  
  44. string link = 28;
  45. string link_with_token = 44;
  46.  
  47. string call_to_action = 46;
  48.  
  49. Phones phones = 56;
  50. }
  51.  
  52. uint32 error = 1;
  53. string information = 2;
  54.  
  55. Room room = 3;
  56. Trace current = 38;
  57. repeated Unknown hosts = 27;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement