mirror of
https://github.com/e1732a364fed/v2ray_simple.git
synced 2025-10-06 17:27:05 +08:00
10 lines
197 B
Go
10 lines
197 B
Go
// Package utils provides utils that needed by all packages of verysimle
|
|
package utils
|
|
|
|
//具体实现见 readv_*.go
|
|
type MultiReader interface {
|
|
Init([][]byte)
|
|
Read(fd uintptr) int32
|
|
Clear()
|
|
}
|