Removed unnecessary protocol declaration.

This commit is contained in:
Ara Sadoyan
2025-03-20 18:40:55 +01:00
parent 5524fd5011
commit cafe18b02e
5 changed files with 8 additions and 22 deletions

View File

@@ -20,7 +20,7 @@ pub async fn hc2(upslist: Arc<UpstreamsDashMap>, fullist: Arc<UpstreamsDashMap>)
let path = path_entry.key();
let mut innervec= Vec::new();
for k in path_entry.value().0.iter().enumerate() {
let (ip, port, ssl, _proto) = k.1;
let (ip, port, ssl) = k.1;
let mut _pref = "";
match ssl {
true => _pref = "https://",