mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update
This commit is contained in:
parent
fae5ef21e6
commit
e1fce3ae37
@ -48,7 +48,7 @@ class ClientController extends Controller
|
|||||||
$uri .= ', obfs=ws';
|
$uri .= ', obfs=ws';
|
||||||
if ($item->settings) {
|
if ($item->settings) {
|
||||||
$wsSettings = json_decode($item->settings);
|
$wsSettings = json_decode($item->settings);
|
||||||
if ($wsSettings->path) $uri .= ', obfs-uri='.$wsSettings->path;
|
if (isset($wsSettings->path)) $uri .= ', obfs-uri='.$wsSettings->path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$uri .= "\r\n";
|
$uri .= "\r\n";
|
||||||
@ -66,8 +66,8 @@ class ClientController extends Controller
|
|||||||
$str .= ', obfs=ws';
|
$str .= ', obfs=ws';
|
||||||
if ($item->settings) {
|
if ($item->settings) {
|
||||||
$wsSettings = json_decode($item->settings);
|
$wsSettings = json_decode($item->settings);
|
||||||
if ($wsSettings->path) $str .= ', obfs-path="'.$wsSettings->path.'"';
|
if (isset($wsSettings->path)) $str .= ', obfs-path="'.$wsSettings->path.'"';
|
||||||
if ($wsSettings->headers->Host) $str .= ', obfs-header="Host:'.$wsSettings->headers->Host.'"';
|
if (isset($wsSettings->headers->Host)) $str .= ', obfs-header="Host:'.$wsSettings->headers->Host.'"';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$uri .= "vmess://".base64_encode($str)."\r\n";
|
$uri .= "vmess://".base64_encode($str)."\r\n";
|
||||||
@ -103,8 +103,8 @@ class ClientController extends Controller
|
|||||||
$array['network'] = $item->network;
|
$array['network'] = $item->network;
|
||||||
if ($item->settings) {
|
if ($item->settings) {
|
||||||
$wsSettings = json_decode($item->settings);
|
$wsSettings = json_decode($item->settings);
|
||||||
if ($wsSettings->path) $array['ws-path'] = $wsSettings->path;
|
if (isset($wsSettings->path)) $array['ws-path'] = $wsSettings->path;
|
||||||
if ($wsSettings->headers->Host) $array['ws-headers'] = [
|
if (isset($wsSettings->headers->Host)) $array['ws-headers'] = [
|
||||||
'Host' => $wsSettings->headers->Host
|
'Host' => $wsSettings->headers->Host
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -66,8 +66,8 @@ class Helper
|
|||||||
];
|
];
|
||||||
if ($item->network == 'ws') {
|
if ($item->network == 'ws') {
|
||||||
$wsSettings = json_decode($item->settings);
|
$wsSettings = json_decode($item->settings);
|
||||||
if ($wsSettings->path) $config['path'] = $wsSettings->path;
|
if (isset($wsSettings->path)) $config['path'] = $wsSettings->path;
|
||||||
if ($wsSettings->headers->Host) $config['host'] = $wsSettings->headers->Host;
|
if (isset($wsSettings->headers->Host)) $config['host'] = $wsSettings->headers->Host;
|
||||||
}
|
}
|
||||||
return "vmess://".base64_encode(json_encode($config))."\r\n";
|
return "vmess://".base64_encode(json_encode($config))."\r\n";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user