blob: 2bd91a22876638bef70652956198797efed5fe71 [file] [log] [blame] [edit]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Protocols and types related to sensors.
library fuchsia.location.sensor;
using fuchsia.wlan.policy;
/// Passively accepts WLAN scan results.
@discoverable
protocol WlanBaseStationWatcher {
/// Provides a handle with which to enumerate the stations currently visible
/// to the device.
ReportCurrentStations(resource struct {
stations client_end:fuchsia.wlan.policy.ScanResultIterator;
});
};