From b719a09a26041c696e213213cebdc8ecd30ad4f3 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 8 Feb 2019 15:21:24 +0100 Subject: wintun: Auto-calculate TUN exchange buffer size Signed-off-by: Simon Rozman --- tun/tun_windows.go | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'tun/tun_windows.go') diff --git a/tun/tun_windows.go b/tun/tun_windows.go index 57be3dc..0bfd847 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -18,7 +18,6 @@ import ( const ( packetSizeMax = 1600 packetExchangeMax = 256 // Number of packets that can be exchanged at a time - exchangeBufferSize = 410632 ) const ( @@ -252,10 +251,10 @@ func (tun *nativeTun) Read(buff []byte, offset int) (int, error) { } // Fill queue. - data := (*[exchangeBufferSize]byte)(unsafe.Pointer(&tun.rdBuff)) - n, err := tun.tunFile.Read(data[:]) + const bufSize = int(unsafe.Sizeof(tun.rdBuff)) + n, err := tun.tunFile.Read((*[bufSize]byte)(unsafe.Pointer(&tun.rdBuff))[:]) tun.rdNextPacket = 0 - if n != exchangeBufferSize || err != nil { + if n != bufSize || err != nil { // TUN interface stopped, returned incomplete data, etc. // Retry. tun.rdBuff.numPackets = 0 @@ -269,14 +268,14 @@ func (tun *nativeTun) Read(buff []byte, offset int) (int, error) { func (tun *nativeTun) flush() error { // Flush write buffer. - data := (*[exchangeBufferSize]byte)(unsafe.Pointer(&tun.wrBuff)) - n, err := tun.tunFile.Write(data[:]) + const bufSize = int(unsafe.Sizeof(tun.wrBuff)) + n, err := tun.tunFile.Write((*[bufSize]byte)(unsafe.Pointer(&tun.wrBuff))[:]) tun.wrBuff.numPackets = 0 if err != nil { return err } - if n != exchangeBufferSize { - return fmt.Errorf("%d byte(s) written, %d byte(s) expected", n, exchangeBufferSize) + if n != bufSize { + return fmt.Errorf("%d byte(s) written, %d byte(s) expected", n, bufSize) } return nil -- cgit v1.2.3-59-g8ed1b