mirror of
https://github.com/fatedier/frp.git
synced 2024-12-16 03:19:00 +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)
|
|
}
|