github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/transport/link.go (about)

     1  package transport
     2  
     3  import "v2ray.com/core/common/buf"
     4  
     5  // Link is a utility for connecting between an inbound and an outbound proxy handler.
     6  type Link struct {
     7  	Reader buf.Reader
     8  	Writer buf.Writer
     9  }