Xray-core/transport/link.go

10 lines
211 B
Go
Raw Normal View History

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