pub struct WlanSoftmacBaseProxy { /* private fields */ }
Implementations§
Source§impl WlanSoftmacBaseProxy
impl WlanSoftmacBaseProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.wlan.softmac/WlanSoftmacBase.
Sourcepub fn take_event_stream(&self) -> WlanSoftmacBaseEventStream
pub fn take_event_stream(&self) -> WlanSoftmacBaseEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn query(
&self,
) -> QueryResponseFut<WlanSoftmacBaseQueryResult, DefaultFuchsiaResourceDialect>
pub fn query( &self, ) -> QueryResponseFut<WlanSoftmacBaseQueryResult, DefaultFuchsiaResourceDialect>
Gets general information about the device and its supported features. This method is safe to call even when the SoftMAC has not yet started.
Note: The implementation of this method must not depend on a response from an ethernet driver, otherwise there is a risk of deadlock. The wlansoftmac driver calls this method synchronously while serving the fuchsia.hardware.ethernet/EthernetImpl.Query method.
Sourcepub fn query_discovery_support(
&self,
) -> QueryResponseFut<WlanSoftmacBaseQueryDiscoverySupportResult, DefaultFuchsiaResourceDialect>
pub fn query_discovery_support( &self, ) -> QueryResponseFut<WlanSoftmacBaseQueryDiscoverySupportResult, DefaultFuchsiaResourceDialect>
Gets information about the station discovery (e.g., scanning and probing) features supported by the device. This method is safe to call even when the SoftMAC has not yet started.
Sourcepub fn query_mac_sublayer_support(
&self,
) -> QueryResponseFut<WlanSoftmacBaseQueryMacSublayerSupportResult, DefaultFuchsiaResourceDialect>
pub fn query_mac_sublayer_support( &self, ) -> QueryResponseFut<WlanSoftmacBaseQueryMacSublayerSupportResult, DefaultFuchsiaResourceDialect>
Gets information about the MAC features supported by the device. This method is safe to call even when the SoftMAC has not yet started.
Note: The implementation of this method must not depend on a response from an ethernet driver, otherwise there is a risk of deadlock. The wlansoftmac driver calls this method synchronously while serving the fuchsia.hardware.ethernet/EthernetImpl.Query method.
Sourcepub fn query_security_support(
&self,
) -> QueryResponseFut<WlanSoftmacBaseQuerySecuritySupportResult, DefaultFuchsiaResourceDialect>
pub fn query_security_support( &self, ) -> QueryResponseFut<WlanSoftmacBaseQuerySecuritySupportResult, DefaultFuchsiaResourceDialect>
Gets information about the security features supported by the device. This method is safe to call even when the SoftMAC has not yet started.
Sourcepub fn query_spectrum_management_support(
&self,
) -> QueryResponseFut<WlanSoftmacBaseQuerySpectrumManagementSupportResult, DefaultFuchsiaResourceDialect>
pub fn query_spectrum_management_support( &self, ) -> QueryResponseFut<WlanSoftmacBaseQuerySpectrumManagementSupportResult, DefaultFuchsiaResourceDialect>
Gets information about the spectrum usage (e.g., DFS) features supported by the device. This method is safe to call even when the SoftMAC has not yet started.
Sourcepub fn set_channel(
&self,
payload: &WlanSoftmacBaseSetChannelRequest,
) -> QueryResponseFut<WlanSoftmacBaseSetChannelResult, DefaultFuchsiaResourceDialect>
pub fn set_channel( &self, payload: &WlanSoftmacBaseSetChannelRequest, ) -> QueryResponseFut<WlanSoftmacBaseSetChannelResult, DefaultFuchsiaResourceDialect>
Set the primary radio channel, e.g. in response to a channel switch event. If successful, this will trigger the channel switch immediately. This may impact the transmission of any frames that are in-flight, and might also interfere with an ongoing scan request.
Common errors include:
ZX_ERR_NOT_SUPPORTED: The device cannot switch to the requested channel.
Sourcepub fn join_bss(
&self,
join_request: &JoinBssRequest,
) -> QueryResponseFut<WlanSoftmacBaseJoinBssResult, DefaultFuchsiaResourceDialect>
pub fn join_bss( &self, join_request: &JoinBssRequest, ) -> QueryResponseFut<WlanSoftmacBaseJoinBssResult, DefaultFuchsiaResourceDialect>
Join a specific BSS in which we will participate.
This applies regardless of if we are hosting the BSS or joining it
(indicated by the remote
flag in JoinBssRequest
).
If successful, the device will switch to the correct channel and perform
any internal filtering/timing operations required to join the BSS.
For client STAs, this is the first step before authenticating.
Common errors include:
ZX_ERR_NOT_SUPPORTED: The device does not support the given bss config.
Sourcepub fn enable_beaconing(
&self,
payload: &WlanSoftmacBaseEnableBeaconingRequest,
) -> QueryResponseFut<WlanSoftmacBaseEnableBeaconingResult, DefaultFuchsiaResourceDialect>
pub fn enable_beaconing( &self, payload: &WlanSoftmacBaseEnableBeaconingRequest, ) -> QueryResponseFut<WlanSoftmacBaseEnableBeaconingResult, DefaultFuchsiaResourceDialect>
Enables hardware Beaconing.
This method cannot be called while beaconing is enabled and so
DisableBeaconing
must be called prior to this method if beaconing is
enabled.
All request fields are required.
Common errors include:
ZX_ERR_NOT_SUPPORTED
: The device does not support hardware beacons.ZX_ERR_INVALID_ARGS
: The device cannot transmit the requested beacon.ZX_ERR_BAD_STATE
: The device is already beaconing.
Sourcepub fn disable_beaconing(
&self,
) -> QueryResponseFut<WlanSoftmacBaseDisableBeaconingResult, DefaultFuchsiaResourceDialect>
pub fn disable_beaconing( &self, ) -> QueryResponseFut<WlanSoftmacBaseDisableBeaconingResult, DefaultFuchsiaResourceDialect>
Disables hardware beaconing.
Sourcepub fn install_key(
&self,
payload: &WlanKeyConfiguration,
) -> QueryResponseFut<WlanSoftmacBaseInstallKeyResult, DefaultFuchsiaResourceDialect>
pub fn install_key( &self, payload: &WlanKeyConfiguration, ) -> QueryResponseFut<WlanSoftmacBaseInstallKeyResult, DefaultFuchsiaResourceDialect>
Install a key for encryption when transmitting or receiving protected frames.
Common errors include: ZX_ERR_INVALID_ARGS: The given config does not specify a valid key. ZX_ERR_NOT_SUPPORTED: The device does not support the given cipher.
Sourcepub fn notify_association_complete(
&self,
assoc_cfg: &WlanAssociationConfig,
) -> QueryResponseFut<WlanSoftmacBaseNotifyAssociationCompleteResult, DefaultFuchsiaResourceDialect>
pub fn notify_association_complete( &self, assoc_cfg: &WlanAssociationConfig, ) -> QueryResponseFut<WlanSoftmacBaseNotifyAssociationCompleteResult, DefaultFuchsiaResourceDialect>
Notifies the device of a successful association and configures additional parameters necessary to participate in that association.
§Errors
Common errors include:
ZX_ERR_BAD_STATE
: The device was not previously informed of this BSS viaWlanSoftmac.JoinBss
.
Sourcepub fn clear_association(
&self,
payload: &WlanSoftmacBaseClearAssociationRequest,
) -> QueryResponseFut<WlanSoftmacBaseClearAssociationResult, DefaultFuchsiaResourceDialect>
pub fn clear_association( &self, payload: &WlanSoftmacBaseClearAssociationRequest, ) -> QueryResponseFut<WlanSoftmacBaseClearAssociationResult, DefaultFuchsiaResourceDialect>
Notifies MAC and PHY that the peer has been de-associated.
Sourcepub fn start_passive_scan(
&self,
payload: &WlanSoftmacBaseStartPassiveScanRequest,
) -> QueryResponseFut<WlanSoftmacBaseStartPassiveScanResult, DefaultFuchsiaResourceDialect>
pub fn start_passive_scan( &self, payload: &WlanSoftmacBaseStartPassiveScanRequest, ) -> QueryResponseFut<WlanSoftmacBaseStartPassiveScanResult, DefaultFuchsiaResourceDialect>
Starts a passive scan. The server will deliver scan results
as Beacon frames using WlanSoftmacIfc.Recv(). When complete,
the server will call WlanSoftmacIfc.ScanComplete() with the
same scan_id
returned by StartPassiveScan().
The server indicates support for StartPassiveScan()
using
fuchsia.wlan.common/ScanOffloadExtension.supported
.
Common errors include: ZX_ERR_INVALID_ARGS: The device is not capable of performing the requested scan, e.g. because an incompatible channel was requested. ZX_ERR_UNAVAILABLE: The device cannot currently perform scans. ZX_ERR_SHOULD_WAIT: Another scan is already in-progress.
Sourcepub fn start_active_scan(
&self,
payload: &WlanSoftmacStartActiveScanRequest,
) -> QueryResponseFut<WlanSoftmacBaseStartActiveScanResult, DefaultFuchsiaResourceDialect>
pub fn start_active_scan( &self, payload: &WlanSoftmacStartActiveScanRequest, ) -> QueryResponseFut<WlanSoftmacBaseStartActiveScanResult, DefaultFuchsiaResourceDialect>
Starts an active scan. The server will deliver scan results
as Beacon or Probe Response frames using WlanSoftmacIfc.Recv().
When complete, the server will call WlanSoftmacIfc.ScanComplete()
with the same scan_id
returned by StartActiveScan().
A device driver indicates support for StartActiveScan()
using
fuchsia.wlan.common/ProbeRequestOffloadExtension.supported
.
Common errors include: ZX_ERR_INVALID_ARGS: The device is not capable of performing the requested scan, e.g. because an incompatible channel was requested. ZX_ERR_UNAVAILABLE: The device cannot currently perform scans. ZX_ERR_SHOULD_WAIT: Another scan is already in-progress.
Sourcepub fn cancel_scan(
&self,
payload: &WlanSoftmacBaseCancelScanRequest,
) -> QueryResponseFut<WlanSoftmacBaseCancelScanResult, DefaultFuchsiaResourceDialect>
pub fn cancel_scan( &self, payload: &WlanSoftmacBaseCancelScanRequest, ) -> QueryResponseFut<WlanSoftmacBaseCancelScanResult, DefaultFuchsiaResourceDialect>
Cancels the ongoing scan corresponding to scan_id
,
where scan_id
is an identifier returned by
StartPassiveScan()
or StartActiveScan()
. If cancellation succeeds,
the server will soon call WlanSoftmacIfc.ScanComplete() with the same
scan_id
.
A device driver indicates support for CancelScan()
using
fuchsia.wlan.common/ScanOffloadExtension.scan_cancel_supported
.
Common errors include:
ZX_ERR_NOT_FOUND
:scan_id
does not match an ongoing scan.ZX_ERR_NOT_SUPPORTED
: Server does not support scan cancellation.
Sourcepub fn update_wmm_parameters(
&self,
payload: &WlanSoftmacBaseUpdateWmmParametersRequest,
) -> QueryResponseFut<WlanSoftmacBaseUpdateWmmParametersResult, DefaultFuchsiaResourceDialect>
pub fn update_wmm_parameters( &self, payload: &WlanSoftmacBaseUpdateWmmParametersRequest, ) -> QueryResponseFut<WlanSoftmacBaseUpdateWmmParametersResult, DefaultFuchsiaResourceDialect>
Indicate the device of modified WiFi Multimedia (WMM) parameters for a particular access category (AC).
Trait Implementations§
Source§impl Clone for WlanSoftmacBaseProxy
impl Clone for WlanSoftmacBaseProxy
Source§fn clone(&self) -> WlanSoftmacBaseProxy
fn clone(&self) -> WlanSoftmacBaseProxy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for WlanSoftmacBaseProxy
impl Debug for WlanSoftmacBaseProxy
Source§impl Proxy for WlanSoftmacBaseProxy
impl Proxy for WlanSoftmacBaseProxy
Source§type Protocol = WlanSoftmacBaseMarker
type Protocol = WlanSoftmacBaseMarker
Proxy
controls.Source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Source§impl WlanSoftmacBaseProxyInterface for WlanSoftmacBaseProxy
impl WlanSoftmacBaseProxyInterface for WlanSoftmacBaseProxy
type QueryResponseFut = QueryResponseFut<Result<WlanSoftmacQueryResponse, i32>>
type QueryDiscoverySupportResponseFut = QueryResponseFut<Result<DiscoverySupport, i32>>
type QueryMacSublayerSupportResponseFut = QueryResponseFut<Result<MacSublayerSupport, i32>>
type QuerySecuritySupportResponseFut = QueryResponseFut<Result<SecuritySupport, i32>>
type QuerySpectrumManagementSupportResponseFut = QueryResponseFut<Result<SpectrumManagementSupport, i32>>
type SetChannelResponseFut = QueryResponseFut<Result<(), i32>>
type JoinBssResponseFut = QueryResponseFut<Result<(), i32>>
type EnableBeaconingResponseFut = QueryResponseFut<Result<(), i32>>
type DisableBeaconingResponseFut = QueryResponseFut<Result<(), i32>>
type InstallKeyResponseFut = QueryResponseFut<Result<(), i32>>
type NotifyAssociationCompleteResponseFut = QueryResponseFut<Result<(), i32>>
type ClearAssociationResponseFut = QueryResponseFut<Result<(), i32>>
type StartPassiveScanResponseFut = QueryResponseFut<Result<WlanSoftmacBaseStartPassiveScanResponse, i32>>
type StartActiveScanResponseFut = QueryResponseFut<Result<WlanSoftmacBaseStartActiveScanResponse, i32>>
type CancelScanResponseFut = QueryResponseFut<Result<(), i32>>
type UpdateWmmParametersResponseFut = QueryResponseFut<Result<(), i32>>
fn query(&self) -> Self::QueryResponseFut
fn query_discovery_support(&self) -> Self::QueryDiscoverySupportResponseFut
fn query_mac_sublayer_support(&self) -> Self::QueryMacSublayerSupportResponseFut
fn query_security_support(&self) -> Self::QuerySecuritySupportResponseFut
fn query_spectrum_management_support( &self, ) -> Self::QuerySpectrumManagementSupportResponseFut
fn set_channel( &self, payload: &WlanSoftmacBaseSetChannelRequest, ) -> Self::SetChannelResponseFut
fn join_bss(&self, join_request: &JoinBssRequest) -> Self::JoinBssResponseFut
fn enable_beaconing( &self, payload: &WlanSoftmacBaseEnableBeaconingRequest, ) -> Self::EnableBeaconingResponseFut
fn disable_beaconing(&self) -> Self::DisableBeaconingResponseFut
fn install_key( &self, payload: &WlanKeyConfiguration, ) -> Self::InstallKeyResponseFut
fn notify_association_complete( &self, assoc_cfg: &WlanAssociationConfig, ) -> Self::NotifyAssociationCompleteResponseFut
fn clear_association( &self, payload: &WlanSoftmacBaseClearAssociationRequest, ) -> Self::ClearAssociationResponseFut
fn start_passive_scan( &self, payload: &WlanSoftmacBaseStartPassiveScanRequest, ) -> Self::StartPassiveScanResponseFut
fn start_active_scan( &self, payload: &WlanSoftmacStartActiveScanRequest, ) -> Self::StartActiveScanResponseFut
fn cancel_scan( &self, payload: &WlanSoftmacBaseCancelScanRequest, ) -> Self::CancelScanResponseFut
fn update_wmm_parameters( &self, payload: &WlanSoftmacBaseUpdateWmmParametersRequest, ) -> Self::UpdateWmmParametersResponseFut
Auto Trait Implementations§
impl Freeze for WlanSoftmacBaseProxy
impl !RefUnwindSafe for WlanSoftmacBaseProxy
impl Send for WlanSoftmacBaseProxy
impl Sync for WlanSoftmacBaseProxy
impl Unpin for WlanSoftmacBaseProxy
impl !UnwindSafe for WlanSoftmacBaseProxy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)