mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-19 14:45:41 +00:00
11 lines
178 B
Go
11 lines
178 B
Go
//go:build windows && amd64
|
|
|
|
package windivert
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed assets/WinDivert64.sys
|
|
var sysBytes []byte
|
|
|
|
func driverSysName() string { return "WinDivert64.sys" }
|