mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-07 09:52:25 +08:00
21 lines
342 B
Go
21 lines
342 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package kcp
|
|
|
|
import (
|
|
"golang.org/x/net/ipv4"
|
|
)
|
|
|
|
func (l *Listener) SendEnetNotifyToClient(enet *Enet) {
|
|
l.defaultSendEnetNotifyToClient(enet)
|
|
}
|
|
|
|
func (s *UDPSession) SendEnetNotify(enet *Enet) {
|
|
s.defaultSendEnetNotify(enet)
|
|
}
|
|
|
|
func (s *UDPSession) tx(txqueue []ipv4.Message) {
|
|
s.defaultTx(txqueue)
|
|
}
|