mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Use buffer for windows packet
This commit is contained in:
parent
9fad6b0cf3
commit
a116134e5b
1 changed files with 4 additions and 3 deletions
|
@ -316,11 +316,12 @@ func (e *WintunEndpoint) dispatchLoop() {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
packet := make([]byte, n)
|
packet := buf.NewSize(n)
|
||||||
copy(packet, data[:n])
|
common.Must1(packet.Write(data[:n]))
|
||||||
pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
|
pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
|
||||||
Payload: gBuffer.NewWithData(packet),
|
Payload: gBuffer.NewWithData(packet.Bytes()),
|
||||||
IsForwardedPacket: true,
|
IsForwardedPacket: true,
|
||||||
|
OnRelease: packet.Release,
|
||||||
})
|
})
|
||||||
var p tcpip.NetworkProtocolNumber
|
var p tcpip.NetworkProtocolNumber
|
||||||
ipHeader, ok := pkt.Data().PullUp(1)
|
ipHeader, ok := pkt.Data().PullUp(1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue