mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
10 lines
211 B
Go
10 lines
211 B
Go
package transport
|
|
|
|
import "github.com/xtls/xray-core/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
|
|
}
|