Code maintenance: Unix abstraction interface

- Used for creating the tun device if it does not exist
- Mocks generated for testing
This commit is contained in:
Quentin McGaw
2020-12-29 01:02:47 +00:00
parent 8dd38fd182
commit 7058373916
7 changed files with 108 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
package unix
import sysunix "golang.org/x/sys/unix"
// Constants used for convenience so "os" does not have to be imported
const (
S_IFCHR = sysunix.S_IFCHR
)