1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 01:10:44 +00:00
v2fly/transport/link.go
2021-02-17 04:31:50 +08:00

10 lines
216 B
Go

package transport
import "github.com/v2fly/v2ray-core/v4/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
}