CServerListMode.h 618 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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::string tags;
  22. int tls;
  23. ///*v2ray*/
  24. //std::string uuid;
  25. //int v2_alter_id;
  26. //std::string v2_net;
  27. //std::string v2_type;
  28. //std::string v2_host;
  29. //std::string v2_path;
  30. //std::string v2_tls;
  31. //std::string v2_sni;
  32. //std::string sni;
  33. //std::string country_code;
  34. };