12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #pragma once
- #include "CBaseMode.h"
-
- class CServerListMode
- {
- public:
- CServerListMode();
- ~CServerListMode();
- public:
- int id;
- /*ss*/
- std::string name;
- std::string host;
- std::string type;
- std::string method;
- std::string passwd;
- int udp;
- int port;
- std::string network;
-
- std::string serverName;
- std::string allowInsecure;
- std::vector<std::string> tags;
- std::string rate;
- int tls;
- int created_at;
- bool select;
- ///*v2ray*/
- //std::string uuid;
- //int v2_alter_id;
- //std::string v2_net;
- //std::string v2_type;
- //std::string v2_host;
- //std::string v2_path;
- //std::string v2_tls;
- //std::string v2_sni;
- //std::string sni;
- //std::string country_code;
- };
|