Darien Raymond 8 éve
szülő
commit
d792faff70
1 módosított fájl, 1 hozzáadás és 2 törlés
  1. 1 2
      transport/ray/ray.go

+ 1 - 2
transport/ray/ray.go

@@ -1,7 +1,6 @@
 package ray
 
 import "v2ray.com/core/common/buf"
-import "time"
 
 // OutboundRay is a transport interface for outbound connections.
 type OutboundRay interface {
@@ -41,8 +40,8 @@ type RayStream interface {
 
 type InputStream interface {
 	buf.Reader
+	buf.TimeoutReader
 	RayStream
-	ReadTimeout(time.Duration) (*buf.Buffer, error)
 }
 
 type OutputStream interface {