mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +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 {
|
||||
break
|
||||
}
|
||||
packet := make([]byte, n)
|
||||
copy(packet, data[:n])
|
||||
packet := buf.NewSize(n)
|
||||
common.Must1(packet.Write(data[:n]))
|
||||
pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
|
||||
Payload: gBuffer.NewWithData(packet),
|
||||
Payload: gBuffer.NewWithData(packet.Bytes()),
|
||||
IsForwardedPacket: true,
|
||||
OnRelease: packet.Release,
|
||||
})
|
||||
var p tcpip.NetworkProtocolNumber
|
||||
ipHeader, ok := pkt.Data().PullUp(1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue