diff options
author | Simon Rozman <simon@rozman.si> | 2019-03-20 21:45:40 +0100 |
---|---|---|
committer | Simon Rozman <simon@rozman.si> | 2019-03-21 00:56:45 +0100 |
commit | 91b4e909bb5fe6980ec56983247e2bfb9fb70ee6 (patch) | |
tree | ff282bf8eba704fdbb861d3fb4fce579439d9e11 /tun/tun_default.go | |
parent | 2c51d6af48b8c6115852d72759c64aaaae5007d5 (diff) |
wintun: Use native Win32 API for I/O
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'tun/tun_default.go')
-rw-r--r-- | tun/tun_default.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tun/tun_default.go b/tun/tun_default.go new file mode 100644 index 0000000..31747a2 --- /dev/null +++ b/tun/tun_default.go @@ -0,0 +1,24 @@ +// +build !windows + +/* SPDX-License-Identifier: MIT + * + * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved. + */ + +package tun + +import ( + "fmt" +) + +func (tun *NativeTun) operateOnFd(fn func(fd uintptr)) { + sysconn, err := tun.tunFile.SyscallConn() + if err != nil { + tun.errors <- fmt.Errorf("unable to find sysconn for tunfile: %s", err.Error()) + return + } + err = sysconn.Control(fn) + if err != nil { + tun.errors <- fmt.Errorf("unable to control sysconn for tunfile: %s", err.Error()) + } +} |