1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 14:40:42 +00:00

reduce buffer size

This commit is contained in:
v2ray 2016-07-06 17:58:15 +02:00
parent 56ce062154
commit 1e3ebeef59
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -49,8 +49,8 @@ func DefaultConfig() Config {
UplinkCapacity: 5,
DownlinkCapacity: 20,
Congestion: false,
WriteBuffer: 8 * 1024 * 1024,
ReadBuffer: 8 * 1024 * 1024,
WriteBuffer: 4 * 1024 * 1024,
ReadBuffer: 4 * 1024 * 1024,
}
}