Add non-Windows nettap stubs

This commit is contained in:
AlexSSD7 2023-09-01 14:41:19 +01:00
commit fb6b1ae25e
5 changed files with 196 additions and 142 deletions

View file

@ -3,5 +3,6 @@ package nettap
import "errors"
var (
ErrTapNotFound = errors.New("tap not found")
ErrTapNotFound = errors.New("tap not found")
ErrTapManagerUnimplemented = errors.New("tap manager is implemented on windows only")
)