mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 04:59:19 +02:00
10 lines
214 B
Go
10 lines
214 B
Go
|
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
|
||
|
}
|