Files
sing-box-extended-mirror/docs/configuration/shared/multiplex.zh.md
T

50 lines
802 B
Markdown
Raw Normal View History

2022-08-24 17:31:32 +08:00
### 服务器要求
`sing-box` :)
### 结构
```json
{
"enabled": true,
"protocol": "smux",
"max_connections": 4,
"min_streams": 4,
"max_streams": 0
}
```
### 字段
#### enabled
2022-08-25 09:45:22 +08:00
启用多路复用。
2022-08-24 17:31:32 +08:00
#### protocol
多路复用协议
| 协议 | 描述 |
|-------|------------------------------------|
| smux | https://github.com/xtaci/smux |
| yamux | https://github.com/hashicorp/yamux |
2022-08-25 09:45:22 +08:00
默认使用 SMux。
2022-08-24 17:31:32 +08:00
#### max_connections
2022-08-25 09:45:22 +08:00
最大连接数量。
2022-08-24 17:31:32 +08:00
2022-08-25 09:45:22 +08:00
与 `max_streams` 冲突。
2022-08-24 17:31:32 +08:00
#### min_streams
2022-08-25 09:45:22 +08:00
在打开新连接之前,连接中的最小多路复用流数量。
2022-08-24 17:31:32 +08:00
2022-08-25 09:45:22 +08:00
与 `max_streams` 冲突。
2022-08-24 17:31:32 +08:00
#### max_streams
2022-08-25 09:45:22 +08:00
在打开新连接之前,连接中的最大多路复用流数量。
2022-08-24 17:31:32 +08:00
2022-08-25 09:45:22 +08:00
与 `max_connections` 和 `min_streams` 冲突。