0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-04-28 14:21:25 +03:00

10 lines
214 B
Go
Raw Normal View History

2020-11-25 19:01:53 +08: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
}