1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00

Fix a typo

This commit is contained in:
v2ray 2016-05-09 08:04:55 -07:00
parent 2739cf2f4a
commit 9b511fb071

View File

@ -97,7 +97,7 @@ func (this *Stream) TryWriteOnce(data *alloc.Buffer) error {
select {
case this.buffer <- data:
return nil
case <-time.Tick(time.Second):
case <-time.After(16 * time.Second):
return ErrorIOTimeout
}
}