You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/ray.go

44 lines
684 B

package core
const (
bufferSize = 16
)
type Ray struct {
Input chan []byte
Output chan []byte
}
func NewRay() Ray {
return Ray{
Input: make(chan []byte, bufferSize),
Output: make(chan []byte, bufferSize),
}
}
type OutboundRay interface {
OutboundInput() <-chan []byte
OutboundOutput() chan<- []byte
}
type InboundRay interface {
InboundInput() chan<- []byte
InboundOutput() <-chan []byte
}
func (ray Ray) OutboundInput() <-chan []byte {
return ray.Input
}
func (ray Ray) OutboundOutput() chan<- []byte {
return ray.Output
}
func (ray Ray) InboundInput() chan<- []byte {
return ray.Input
}
func (ray Ray) InboundOutput() <-chan []byte {
return ray.Output
}