1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 00:18:16 -04:00
v2fly/transport/ray/ray.go

55 lines
1.4 KiB
Go
Raw Normal View History

2015-10-14 08:51:19 -04:00
package ray
2015-09-12 16:11:54 -04:00
2018-02-08 09:39:46 -05:00
import (
"v2ray.com/core/common"
"v2ray.com/core/common/buf"
)
2015-10-10 06:46:44 -04:00
// OutboundRay is a transport interface for outbound connections.
2015-09-12 16:11:54 -04:00
type OutboundRay interface {
2015-10-10 06:46:44 -04:00
// OutboundInput provides a stream for the input of the outbound connection.
// The outbound connection shall write all the input until it is closed.
2016-04-18 12:44:10 -04:00
OutboundInput() InputStream
2015-10-10 06:46:44 -04:00
// OutboundOutput provides a stream to retrieve the response from the
// outbound connection. The outbound connection shall close the channel
// after all responses are received and put into the channel.
2016-04-18 12:44:10 -04:00
OutboundOutput() OutputStream
2015-09-12 16:11:54 -04:00
}
2015-10-10 06:46:44 -04:00
// InboundRay is a transport interface for inbound connections.
2015-09-12 16:11:54 -04:00
type InboundRay interface {
2015-10-10 06:46:44 -04:00
// 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.
2016-04-18 12:44:10 -04:00
InboundInput() OutputStream
2015-10-10 06:46:44 -04:00
// InboundOutput provides a stream of data for the inbound connection to write
2015-10-10 06:46:44 -04:00
// as response. The inbound connection shall write all the data from the
// channel until it is closed.
2016-04-18 12:44:10 -04:00
InboundOutput() InputStream
2015-09-12 16:11:54 -04:00
}
// Ray is an internal transport channel between inbound and outbound connection.
2015-10-14 08:51:19 -04:00
type Ray interface {
InboundRay
OutboundRay
}
2016-04-18 12:44:10 -04:00
2017-01-10 08:22:42 -05:00
type RayStream interface {
2018-02-08 09:39:46 -05:00
common.Closable
2017-01-10 08:22:42 -05:00
CloseError()
}
2016-04-18 12:44:10 -04:00
type InputStream interface {
2016-12-09 07:17:34 -05:00
buf.Reader
2017-04-02 19:06:49 -04:00
buf.TimeoutReader
2017-01-10 08:22:42 -05:00
RayStream
2017-04-25 04:48:06 -04:00
Peek(*buf.Buffer)
2016-04-18 12:44:10 -04:00
}
type OutputStream interface {
2016-12-09 07:17:34 -05:00
buf.Writer
2017-01-10 08:22:42 -05:00
RayStream
2016-04-18 12:44:10 -04:00
}