2023-08-31 16:16:57 +01:00
|
|
|
package nettap
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
var (
|
2023-09-01 14:41:19 +01:00
|
|
|
ErrTapNotFound = errors.New("tap not found")
|
|
|
|
|
ErrTapManagerUnimplemented = errors.New("tap manager is implemented on windows only")
|
2023-08-31 16:16:57 +01:00
|
|
|
)
|