mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
21 lines
441 B
PHP
21 lines
441 B
PHP
<?php
|
|
namespace App\Utils;
|
|
|
|
use App\Models\User;
|
|
|
|
class Shadowsocks
|
|
{
|
|
public static function SIP008($server, User $user)
|
|
{
|
|
$config = [
|
|
"id" => $server['id'],
|
|
"remarks" => $server['name'],
|
|
"server" => $server['host'],
|
|
"server_port" => $server['port'],
|
|
"password" => $user['uuid'],
|
|
"method" => $server['cipher']
|
|
];
|
|
return $config;
|
|
}
|
|
}
|