Xray-core/transport/link.go

10 lines
214 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package transport
import "github.com/xtls/xray-core/v1/common/buf"
// Link is a utility for connecting between an inbound and an outbound proxy handler.
type Link struct {
Reader buf.Reader
Writer buf.Writer
}