aboutsummaryrefslogtreecommitdiffstats
path: root/src/tun.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/tun.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tun.go b/src/tun.go
index 1a8bb82..594754a 100644
--- a/src/tun.go
+++ b/src/tun.go
@@ -1,6 +1,6 @@
package main
-type TUN interface {
+type TUNDevice interface {
Read([]byte) (int, error)
Write([]byte) (int, error)
Name() string