update log

This commit is contained in:
v2ray 2016-06-17 18:03:31 +02:00
parent 233b73d1db
commit 87cb0d5dc9
1 changed files with 3 additions and 2 deletions

View File

@ -42,10 +42,12 @@ func ListenTCP(address v2net.Address, port v2net.Port, callback ConnectionHandle
case settings.IsCapableOf(StreamConnectionTypeRawTCP):
listener, err = RawTCPListenFunc(address, port)
default:
log.Error("Internet|Listener: Unknown stream type: ", settings.Type)
err = ErrUnsupportedStreamType
}
if err != nil {
log.Warning("Internet|Listener: Failed to listen on ", address, ":", port)
return nil, err
}
@ -70,11 +72,10 @@ func (this *TCPHub) start() {
if err != nil {
if this.accepting {
log.Warning("Listener: Failed to accept new TCP connection: ", err)
log.Warning("Internet|Listener: Failed to accept new TCP connection: ", err)
}
continue
}
log.Info("Handling connection from ", conn.RemoteAddr())
go this.connCallback(conn)
}
}