diff options
-rw-r--r-- | tun/tun_windows.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tun/tun_windows.go b/tun/tun_windows.go index e55fa6f..2fa6901 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -9,7 +9,6 @@ import ( "errors" "os" "sync" - "syscall" "time" "unsafe" @@ -273,7 +272,7 @@ func (tun *NativeTun) Read(buff []byte, offset int) (int, error) { retries-- continue } - if ok && pe.Err == syscall.Errno(6) /*windows.ERROR_INVALID_HANDLE*/ { + if ok && pe.Err == windows.ERROR_HANDLE_EOF { tun.closeTUN() break } @@ -315,7 +314,7 @@ func (tun *NativeTun) Flush() error { retries-- continue } - if ok && pe.Err == syscall.Errno(6) /*windows.ERROR_INVALID_HANDLE*/ { + if ok && pe.Err == windows.ERROR_HANDLE_EOF { tun.closeTUN() break } |