From: Jason A. Donenfeld Date: Fri, 4 May 2018 19:20:19 +0000 (+0200) Subject: tun: print automatically assigned interface name to stdout X-Git-Tag: 0.0.20180514~45^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac898bb35afde34a383f72726c2818d082933e8d;p=thirdparty%2Fwireguard-go.git tun: print automatically assigned interface name to stdout This way scripts know what process they just started. --- diff --git a/tun_darwin.go b/tun_darwin.go index 4d9b06d..5514563 100644 --- a/tun_darwin.go +++ b/tun_darwin.go @@ -98,7 +98,13 @@ func CreateTUN(name string) (TUNDevice, error) { return nil, fmt.Errorf("SYS_CONNECT: %v", errno) } - return CreateTUNFromFile(os.NewFile(uintptr(fd), "")) + tun, err := CreateTUNFromFile(os.NewFile(uintptr(fd), "")) + + if err == nil && name == "utun" { + fmt.Printf("OS assigned interface: %s\n", tun.(*NativeTun).name) + } + + return tun, err } func CreateTUNFromFile(file *os.File) (TUNDevice, error) {