github.com/Cloud-Foundations/Dominator@v0.3.4/lib/net/createTapDevice.go (about) 1 // +build !linux 2 3 package net 4 5 import ( 6 "errors" 7 "os" 8 ) 9 10 func createTapDevice() (*os.File, string, error) { 11 return nil, "", errors.New("tap devices not implemented on this OS") 12 }