Add darwin support

This commit is contained in:
世界 2022-08-05 13:17:17 +08:00
parent 7ee0d19103
commit 4a83493b40
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 404 additions and 7 deletions

View file

@ -308,7 +308,7 @@ func (e *WintunEndpoint) Attach(dispatcher stack.NetworkDispatcher) {
}
func (e *WintunEndpoint) dispatchLoop() {
_buffer := buf.StackNewPacket()
_buffer := buf.StackNewSize(int(e.tun.mtu))
defer common.KeepAlive(_buffer)
buffer := common.Dup(_buffer)
defer buffer.Release()
@ -339,7 +339,12 @@ func (e *WintunEndpoint) dispatchLoop() {
default:
continue
}
e.dispatcher.DeliverNetworkPacket(p, pkt)
dispatcher := e.dispatcher
if dispatcher == nil {
pkt.DecRef()
return
}
dispatcher.DeliverNetworkPacket(p, pkt)
pkt.DecRef()
}
}