mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-05 12:57:36 +03:00
platform: Add SendNotification
This commit is contained in:
parent
f504fb0d46
commit
88099a304a
5 changed files with 52 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue