mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
11 lines
142 B
Go
11 lines
142 B
Go
// +build !linux
|
|
|
|
package kcp
|
|
|
|
import (
|
|
"golang.org/x/net/ipv4"
|
|
)
|
|
|
|
func (s *UDPSession) tx(txqueue []ipv4.Message) {
|
|
s.defaultTx(txqueue)
|
|
}
|