github.com/xraypb/Xray-core@v1.8.1/transport/link.go (about) 1 package transport 2 3 import "github.com/xraypb/Xray-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 }