]> Cypherpunks.ru repositories - govpn.git/blob - tap_freebsd.go
Raise copyright years
[govpn.git] / tap_freebsd.go
1 // +build freebsd
2
3 /*
4 GoVPN -- simple secure free software virtual private network daemon
5 Copyright (C) 2014-2020 Sergey Matveev <stargrave@stargrave.org>
6 */
7
8 package govpn
9
10 import (
11         "io"
12         "os"
13         "path"
14 )
15
16 func newTAPer(ifaceName string) (io.ReadWriter, error) {
17         return os.OpenFile(path.Join("/dev/", ifaceName), os.O_RDWR, os.ModePerm)
18 }