aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-10 17:20:43 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-10 17:20:43 +0200
commit9c4acb9f358f576479975f7baaf6b4ed5ec932a8 (patch)
tree0e84e42b8e67a3c2bfa5fd46b2951711a6ca5901 /src/main.go
parentAdded replay protection (diff)
downloadwireguard-go-9c4acb9f358f576479975f7baaf6b4ed5ec932a8.tar.xz
wireguard-go-9c4acb9f358f576479975f7baaf6b4ed5ec932a8.zip
Fixed incomming initiation bug
Diffstat (limited to '')
-rw-r--r--src/main.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main.go b/src/main.go
index b89af17..50140e3 100644
--- a/src/main.go
+++ b/src/main.go
@@ -18,9 +18,7 @@ func main() {
}
deviceName := os.Args[1]
- // Open TUN device
-
- // TODO: Fix capabilities
+ // open TUN device
tun, err := CreateTUN(deviceName)
log.Println(tun, err)
@@ -29,8 +27,9 @@ func main() {
}
device := NewDevice(tun, LogLevelDebug)
+ device.log.Info.Println("Starting device")
- // Start configuration lister
+ // start configuration lister
socketPath := fmt.Sprintf("/var/run/wireguard/%s.sock", deviceName)
l, err := net.Listen("unix", socketPath)