Add wifi_ssid and wifi_bssid route and DNS rules

This commit is contained in:
世界 2023-11-24 20:58:07 +08:00
parent f0571b4122
commit 253976d6c0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
12 changed files with 161 additions and 0 deletions

View file

@ -41,6 +41,7 @@ type Router interface {
NetworkMonitor() tun.NetworkUpdateMonitor
InterfaceMonitor() tun.DefaultInterfaceMonitor
PackageManager() tun.PackageManager
WIFIState() WIFIState
Rules() []Rule
ClashServer() ClashServer
@ -78,3 +79,8 @@ type DNSRule interface {
type InterfaceUpdateListener interface {
InterfaceUpdated()
}
type WIFIState struct {
SSID string
BSSID string
}