1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/transport/ray/direct.go
2015-10-15 11:15:59 +00:00

39 lines
707 B
Go

package ray
import (
"github.com/v2ray/v2ray-core/common/alloc"
)
const (
bufferSize = 16
)
// NewRay creates a new Ray for direct traffic transport.
func NewRay() Ray {
return &directRay{
Input: make(chan *alloc.Buffer, bufferSize),
Output: make(chan *alloc.Buffer, bufferSize),
}
}
type directRay struct {
Input chan *alloc.Buffer
Output chan *alloc.Buffer
}
func (ray *directRay) OutboundInput() <-chan *alloc.Buffer {
return ray.Input
}
func (ray *directRay) OutboundOutput() chan<- *alloc.Buffer {
return ray.Output
}
func (ray *directRay) InboundInput() chan<- *alloc.Buffer {
return ray.Input
}
func (ray *directRay) InboundOutput() <-chan *alloc.Buffer {
return ray.Output
}