Windows net tap implementation

This commit is contained in:
AlexSSD7 2023-08-31 16:16:57 +01:00
commit 732600ba80
3 changed files with 263 additions and 0 deletions

7
nettap/errors.go Normal file
View file

@ -0,0 +1,7 @@
package nettap
import "errors"
var (
ErrTapNotFound = errors.New("tap not found")
)