CServerListMode.h 682 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #pragma once
  2. #include "CBaseMode.h"
  3. class CServerListMode
  4. {
  5. public:
  6. CServerListMode();
  7. ~CServerListMode();
  8. public:
  9. int id;
  10. /*ss*/
  11. std::string name;
  12. std::string host;
  13. std::string type;
  14. std::string method;
  15. std::string passwd;
  16. int udp;
  17. int port;
  18. std::string network;
  19. std::string serverName;
  20. std::string allowInsecure;
  21. std::vector<std::string> tags;
  22. std::string rate;
  23. int tls;
  24. int created_at;
  25. bool select;
  26. ///*v2ray*/
  27. //std::string uuid;
  28. //int v2_alter_id;
  29. //std::string v2_net;
  30. //std::string v2_type;
  31. //std::string v2_host;
  32. //std::string v2_path;
  33. //std::string v2_tls;
  34. //std::string v2_sni;
  35. //std::string sni;
  36. //std::string country_code;
  37. };