mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
13 lines
210 B
Go
13 lines
210 B
Go
|
package kcp
|
||
|
|
||
|
import "golang.org/x/net/ipv4"
|
||
|
|
||
|
const (
|
||
|
batchSize = 16
|
||
|
)
|
||
|
|
||
|
type batchConn interface {
|
||
|
WriteBatch(ms []ipv4.Message, flags int) (int, error)
|
||
|
ReadBatch(ms []ipv4.Message, flags int) (int, error)
|
||
|
}
|