platform: Add SendNotification

This commit is contained in:
世界 2024-11-06 12:51:53 +08:00
parent f504fb0d46
commit 88099a304a
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 52 additions and 10 deletions

View file

@ -22,6 +22,7 @@ type PlatformInterface interface {
IncludeAllNetworks() bool
ReadWIFIState() *WIFIState
ClearDNSCache()
SendNotification(notification *Notification) error
}
type TunInterface interface {
@ -55,6 +56,16 @@ type NetworkInterfaceIterator interface {
HasNext() bool
}
type Notification struct {
Identifier string
TypeName string
TypeID int32
Title string
Subtitle string
Body string
OpenURL string
}
type OnDemandRule interface {
Target() int32
DNSSearchDomainMatch() StringIterator