123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #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::string tags;
- int tls;
- ///*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;
- };
|