mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
50 lines
782 B
Markdown
50 lines
782 B
Markdown
|
### 服务器要求
|
||
|
|
||
|
`sing-box` :)
|
||
|
|
||
|
### 结构
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"enabled": true,
|
||
|
"protocol": "smux",
|
||
|
"max_connections": 4,
|
||
|
"min_streams": 4,
|
||
|
"max_streams": 0
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### 字段
|
||
|
|
||
|
#### enabled
|
||
|
|
||
|
启用多路复用
|
||
|
|
||
|
#### protocol
|
||
|
|
||
|
多路复用协议
|
||
|
|
||
|
| 协议 | 描述 |
|
||
|
|-------|------------------------------------|
|
||
|
| smux | https://github.com/xtaci/smux |
|
||
|
| yamux | https://github.com/hashicorp/yamux |
|
||
|
|
||
|
默认使用 SMux.
|
||
|
|
||
|
#### max_connections
|
||
|
|
||
|
最大连接数量
|
||
|
|
||
|
与 `max_streams` 冲突.
|
||
|
|
||
|
#### min_streams
|
||
|
|
||
|
在打开新连接之前,连接中的最小多路复用流数量
|
||
|
|
||
|
与 `max_streams` 冲突.
|
||
|
|
||
|
#### max_streams
|
||
|
|
||
|
在打开新连接之前,连接中的最大多路复用流数量
|
||
|
|
||
|
与 `max_connections` 和 `min_streams` 冲突.
|