platform: Add UsePlatformWIFIMonitor to gRPC interface

Align dev-next-grpc with wip2 by adding UsePlatformWIFIMonitor()
to the new PlatformInterface, allowing platform clients to indicate
they handle WIFI monitoring themselves.
This commit is contained in:
世界
2025-12-07 11:24:45 +08:00
parent a5fb467db2
commit ac427b98f4
4 changed files with 40 additions and 28 deletions

View File

@@ -32,6 +32,8 @@ type PlatformInterface interface {
UsePlatformConnectionOwnerFinder() bool
FindConnectionOwner(request *FindConnectionOwnerRequest) (*ConnectionOwner, error)
UsePlatformWIFIMonitor() bool
UsePlatformNotification() bool
SendNotification(notification *Notification) error
}