reduce buffer size

pull/215/head
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
1 changed files with 2 additions and 2 deletions

View File

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