Files
hk4e/gate-hk4e/kcp/batchconn.go
2022-11-20 15:38:00 +08:00

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)
}