aboutsummaryrefslogtreecommitdiffstats
path: root/tun.go
diff options
context:
space:
mode:
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
}