aboutsummaryrefslogtreecommitdiffstats
path: root/tun.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-04-18 16:39:14 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-04-18 16:42:30 +0200
commit26a56a652eeeece7677ba4f1896da34c83930652 (patch)
tree27f4a4a2925287dd3087916a867b81882c806c93 /tun.go
parentUse socketcall on x86 (diff)
downloadwireguard-go-26a56a652eeeece7677ba4f1896da34c83930652.tar.xz
wireguard-go-26a56a652eeeece7677ba4f1896da34c83930652.zip
Allow determining name
Diffstat (limited to 'tun.go')
-rw-r--r--tun.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tun.go b/tun.go
index 7b044ad..318772a 100644
--- a/tun.go
+++ b/tun.go
@@ -20,7 +20,7 @@ type TUNDevice interface {
Read([]byte, int) (int, error) // read a packet from the device (without any additional headers)
Write([]byte, int) (int, error) // writes a packet to the device (without any additional headers)
MTU() (int, error) // returns the MTU of the device
- Name() string // returns the current name
+ Name() (string, error) // fetches and returns the current name
Events() chan TUNEvent // returns a constant channel of events related to the device
Close() error // stops the device and closes the event channel
}