mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
be23d5d3b7
The first UoT protocol that supports UoT Migration Thank @yuhan6665 for testing
42 lines
955 B
Go
42 lines
955 B
Go
package pipe
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/xtls/xray-core/common/buf"
|
|
)
|
|
|
|
// Reader is a buf.Reader that reads content from a pipe.
|
|
type Reader struct {
|
|
pipe *pipe
|
|
}
|
|
|
|
// ReadMultiBuffer implements buf.Reader.
|
|
func (r *Reader) ReadMultiBuffer() (buf.MultiBuffer, error) {
|
|
return r.pipe.ReadMultiBuffer()
|
|
}
|
|
|
|
// ReadMultiBufferTimeout reads content from a pipe within the given duration, or returns buf.ErrTimeout otherwise.
|
|
func (r *Reader) ReadMultiBufferTimeout(d time.Duration) (buf.MultiBuffer, error) {
|
|
return r.pipe.ReadMultiBufferTimeout(d)
|
|
}
|
|
|
|
// Interrupt implements common.Interruptible.
|
|
func (r *Reader) Interrupt() {
|
|
r.pipe.Interrupt()
|
|
}
|
|
|
|
// ReturnAnError makes ReadMultiBuffer return an error, only once.
|
|
func (r *Reader) ReturnAnError(err error) {
|
|
r.pipe.errChan <- err
|
|
}
|
|
|
|
// Recover catches an error set by ReturnAnError, if exists.
|
|
func (r *Reader) Recover() (err error) {
|
|
select {
|
|
case err = <-r.pipe.errChan:
|
|
default:
|
|
}
|
|
return
|
|
}
|