mirror of
https://github.com/xtaci/kcp-go.git
synced 2024-04-21 12:32:15 +00:00
9 lines
183 B
Go
9 lines
183 B
Go
package kcp
|
|
|
|
import "golang.org/x/net/ipv4"
|
|
|
|
type batchConn interface {
|
|
WriteBatch(ms []ipv4.Message, flags int) (int, error)
|
|
ReadBatch(ms []ipv4.Message, flags int) (int, error)
|
|
}
|