mirror of https://github.com/fatedier/frp
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)
|
||
|
}
|