Create folder for vless mod

This commit is contained in:
Keivan-sf
2023-10-17 17:27:24 +03:30
parent c127d1f024
commit d4f9cda5d0
2 changed files with 39 additions and 46 deletions

View File

@@ -0,0 +1,31 @@
pub struct VlessQuery {
pub security: String,
pub sni: String,
pub fp: String,
pub pbk: String,
pub sid: String,
pub r#type: String,
pub flow: String,
pub path: String,
pub encryption: String,
pub header_type: String,
pub host: String,
pub seed: String,
pub quic_security: String,
pub r#key: String,
pub mode: String,
pub service_name: String,
pub slpn: String,
pub spx: String,
}
pub struct VlessAddress {
pub uuid: String,
pub address: String,
pub port: u16,
}
pub struct VlessData {
pub query: VlessQuery,
pub address_data: VlessAddress,
}