mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
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)
|
|
}
|