mirror of https://gogs.blitter.com/RLabs/xs
12 lines
142 B
Go
12 lines
142 B
Go
|
// +build !linux
|
||
|
|
||
|
package kcp
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/ipv4"
|
||
|
)
|
||
|
|
||
|
func (s *UDPSession) tx(txqueue []ipv4.Message) {
|
||
|
s.defaultTx(txqueue)
|
||
|
}
|