mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-12-13 05:14:17 +04: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
|
||
|
|
}
|