Files
Xray-core/common/drain/drain.go
T

9 lines
116 B
Go
Raw Normal View History

package drain
import "io"
type Drainer interface {
AcknowledgeReceive(size int)
Drain(reader io.Reader) error
}