From b13739ada2cfa1c66672e7a4edfe339e394b1a4f Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 8 Feb 2019 00:19:56 +0100 Subject: wintun: Adjust tunRWQueue.left member to match Wintun driver Signed-off-by: Simon Rozman --- tun/tun_windows.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tun/tun_windows.go b/tun/tun_windows.go index 5c231e7..f284baf 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -36,7 +36,7 @@ type tunPacket struct { type tunRWQueue struct { numPackets uint32 packets [TUN_MAX_PACKET_EXCHANGE]tunPacket - left uint32 + left bool } type nativeTun struct { @@ -229,7 +229,7 @@ func (tun *nativeTun) Read(buff []byte, offset int) (int, error) { } } - if tun.rdBuff.numPackets < TUN_MAX_PACKET_EXCHANGE || tun.rdBuff.left == 0 { + if tun.rdBuff.numPackets < TUN_MAX_PACKET_EXCHANGE || !tun.rdBuff.left { // Buffer was not full. Wait for the interface data or user close. r, err := windows.WaitForMultipleObjects(tun.signals[:], false, windows.INFINITE) if err != nil { -- cgit v1.2.3