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/transport/ray/ray.go

51 lines
1.4 KiB

package ray
import "v2ray.com/core/common/buf"
9 years ago
// OutboundRay is a transport interface for outbound connections.
type OutboundRay interface {
9 years ago
// OutboundInput provides a stream for the input of the outbound connection.
// The outbound connection shall write all the input until it is closed.
OutboundInput() InputStream
9 years ago
// OutboundOutput provides a stream to retrieve the response from the
// outbound connection. The outbound connection shall close the channel
// after all responses are receivced and put into the channel.
OutboundOutput() OutputStream
}
9 years ago
// InboundRay is a transport interface for inbound connections.
type InboundRay interface {
9 years ago
// InboundInput provides a stream to retrieve the request from client.
// The inbound connection shall close the channel after the entire request
// is received and put into the channel.
InboundInput() OutputStream
9 years ago
// InboudBound provides a stream of data for the inbound connection to write
// as response. The inbound connection shall write all the data from the
// channel until it is closed.
InboundOutput() InputStream
}
9 years ago
// Ray is an internal tranport channel between inbound and outbound connection.
type Ray interface {
InboundRay
OutboundRay
}
type RayStream interface {
Close()
CloseError()
}
type InputStream interface {
buf.Reader
8 years ago
buf.TimeoutReader
RayStream
}
type OutputStream interface {
buf.Writer
RayStream
}