10 lines
211 B
Go
Raw Normal View History

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