mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-21 23:46:51 +00:00
11 lines
176 B
Go
11 lines
176 B
Go
//go:build windows && 386
|
|
|
|
package windivert
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed assets/WinDivert32.sys
|
|
var sysBytes []byte
|
|
|
|
func driverSysName() string { return "WinDivert32.sys" }
|