link.go 194 B

123456789
  1. package vio
  2. import "v2ray.com/core/common/buf"
  3. // Link is a utility for connecting between an inbound and an outbound proxy handler.
  4. type Link struct {
  5. Reader buf.Reader
  6. Writer buf.Writer
  7. }