init timeout value

pull/69/head
v2ray 2016-01-04 22:57:17 +01:00
parent 1239b1a57b
commit 43a06e52de
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ type TimeOutReader struct {
func NewTimeOutReader(timeout int, connection net.Conn) *TimeOutReader {
reader := &TimeOutReader{
connection: connection,
timeout: -100,
}
reader.SetTimeOut(timeout)
return reader