mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-02 19:19:20 +02:00
11 lines
187 B
Go
11 lines
187 B
Go
|
package drain
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
//go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
||
|
|
||
|
type Drainer interface {
|
||
|
AcknowledgeReceive(size int)
|
||
|
Drain(reader io.Reader) error
|
||
|
}
|