mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
12 lines
210 B
Go
12 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)
|
|
}
|