From: Jason A. Donenfeld Date: Mon, 1 Jul 2019 11:37:54 +0000 (+0200) Subject: tun: windows: packetNum is unused X-Git-Tag: 0.0.20190805~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b844f1b3cc2c37ca76427572d8fc8d7977c0274d;p=thirdparty%2Fwireguard-go.git tun: windows: packetNum is unused --- diff --git a/tun/tun_windows.go b/tun/tun_windows.go index 1de74e6..543482e 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -35,7 +35,6 @@ type exchgBufRead struct { type exchgBufWrite struct { data [packetExchangeSize]byte offset uint32 - packetNum uint32 } type NativeTun struct { @@ -314,7 +313,6 @@ func (tun *NativeTun) Flush() error { return nil } defer func() { - tun.wrBuff.packetNum = 0 tun.wrBuff.offset = 0 }() retries := maybeRetry(1000) @@ -375,7 +373,6 @@ func (tun *NativeTun) putTunPacket(buff []byte) error { packet = packet[packetExchangeAlignment : packetExchangeAlignment+size] copy(packet, buff) - tun.wrBuff.packetNum++ tun.wrBuff.offset += pSize return nil