blob: 6c3070105d212935a5b71ed77977b235e383c213 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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)
}
|