pub struct WlanSoftmacBaseProxy { /* private fields */ }

Implementations§

source§

impl WlanSoftmacBaseProxy

source

pub fn new(channel: AsyncChannel) -> Self

Create a new Proxy for fuchsia.wlan.softmac/WlanSoftmacBase.

source

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.

source

pub fn query(&self) -> QueryResponseFut<WlanSoftmacBaseQueryResult>

Gets general information about the device and its supported features. This method is safe to call even when the SoftMAC has not yet started.

source

pub fn query_discovery_support( &self ) -> QueryResponseFut<WlanSoftmacBaseQueryDiscoverySupportResult>

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.

source

pub fn query_mac_sublayer_support( &self ) -> QueryResponseFut<WlanSoftmacBaseQueryMacSublayerSupportResult>

Gets information about the MAC features supported by the device. This method is safe to call even when the SoftMAC has not yet started.

source

pub fn query_security_support( &self ) -> QueryResponseFut<WlanSoftmacBaseQuerySecuritySupportResult>

Gets information about the security features supported by the device. This method is safe to call even when the SoftMAC has not yet started.

source

pub fn query_spectrum_management_support( &self ) -> QueryResponseFut<WlanSoftmacBaseQuerySpectrumManagementSupportResult>

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.

source

pub fn set_channel( &self, payload: &WlanSoftmacBaseSetChannelRequest ) -> QueryResponseFut<WlanSoftmacBaseSetChannelResult>

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.

source

pub fn join_bss( &self, join_request: &JoinBssRequest ) -> QueryResponseFut<WlanSoftmacBaseJoinBssResult>

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.

source

pub fn enable_beaconing( &self, payload: &WlanSoftmacBaseEnableBeaconingRequest ) -> QueryResponseFut<WlanSoftmacBaseEnableBeaconingResult>

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.
source

pub fn disable_beaconing( &self ) -> QueryResponseFut<WlanSoftmacBaseDisableBeaconingResult>

Disables hardware beaconing.

source

pub fn install_key( &self, payload: &WlanKeyConfiguration ) -> QueryResponseFut<WlanSoftmacBaseInstallKeyResult>

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.

source

pub fn notify_association_complete( &self, assoc_cfg: &WlanAssociationConfig ) -> QueryResponseFut<WlanSoftmacBaseNotifyAssociationCompleteResult>

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 via WlanSoftmac.JoinBss.
source

pub fn clear_association( &self, payload: &WlanSoftmacBaseClearAssociationRequest ) -> QueryResponseFut<WlanSoftmacBaseClearAssociationResult>

Notifies MAC and PHY that the peer has been de-associated.

source

pub fn start_passive_scan( &self, payload: &WlanSoftmacBaseStartPassiveScanRequest ) -> QueryResponseFut<WlanSoftmacBaseStartPassiveScanResult>

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.

source

pub fn start_active_scan( &self, payload: &WlanSoftmacStartActiveScanRequest ) -> QueryResponseFut<WlanSoftmacBaseStartActiveScanResult>

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.

source

pub fn cancel_scan( &self, payload: &WlanSoftmacBaseCancelScanRequest ) -> QueryResponseFut<WlanSoftmacBaseCancelScanResult>

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.
source

pub fn update_wmm_parameters( &self, payload: &WlanSoftmacBaseUpdateWmmParametersRequest ) -> QueryResponseFut<WlanSoftmacBaseUpdateWmmParametersResult>

Indicate the device of modified WiFi Multimedia (WMM) parameters for a particular access category (AC).

Trait Implementations§

source§

impl Clone for WlanSoftmacBaseProxy

source§

fn clone(&self) -> WlanSoftmacBaseProxy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WlanSoftmacBaseProxy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Proxy for WlanSoftmacBaseProxy

§

type Protocol = WlanSoftmacBaseMarker

The protocol which this Proxy controls.
source§

fn from_channel(inner: AsyncChannel) -> Self

Create a proxy over the given channel.
source§

fn into_channel(self) -> Result<AsyncChannel, Self>

Attempt to convert the proxy back into a channel. Read more
source§

fn as_channel(&self) -> &AsyncChannel

Get a reference to the proxy’s underlying channel. Read more
§

fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>

Attempt to convert the proxy back into a client end. Read more
§

fn is_closed(&self) -> bool

Returns true if the proxy has received the PEER_CLOSED signal.
§

fn on_closed(&self) -> OnSignals<'_, Unowned<'_, Handle>>

Returns a future that completes when the proxy receives the PEER_CLOSED signal.
source§

impl WlanSoftmacBaseProxyInterface for WlanSoftmacBaseProxy

§

type QueryResponseFut = QueryResponseFut<Result<WlanSoftmacQueryResponse, i32>>

source§

fn query(&self) -> Self::QueryResponseFut

§

type QueryDiscoverySupportResponseFut = QueryResponseFut<Result<DiscoverySupport, i32>>

source§

fn query_discovery_support(&self) -> Self::QueryDiscoverySupportResponseFut

§

type QueryMacSublayerSupportResponseFut = QueryResponseFut<Result<MacSublayerSupport, i32>>

source§

fn query_mac_sublayer_support(&self) -> Self::QueryMacSublayerSupportResponseFut

§

type QuerySecuritySupportResponseFut = QueryResponseFut<Result<SecuritySupport, i32>>

source§

fn query_security_support(&self) -> Self::QuerySecuritySupportResponseFut

§

type QuerySpectrumManagementSupportResponseFut = QueryResponseFut<Result<SpectrumManagementSupport, i32>>

source§

fn query_spectrum_management_support( &self ) -> Self::QuerySpectrumManagementSupportResponseFut

§

type SetChannelResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn set_channel( &self, payload: &WlanSoftmacBaseSetChannelRequest ) -> Self::SetChannelResponseFut

§

type JoinBssResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn join_bss(&self, join_request: &JoinBssRequest) -> Self::JoinBssResponseFut

§

type EnableBeaconingResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn enable_beaconing( &self, payload: &WlanSoftmacBaseEnableBeaconingRequest ) -> Self::EnableBeaconingResponseFut

§

type DisableBeaconingResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn disable_beaconing(&self) -> Self::DisableBeaconingResponseFut

§

type InstallKeyResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn install_key( &self, payload: &WlanKeyConfiguration ) -> Self::InstallKeyResponseFut

§

type NotifyAssociationCompleteResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn notify_association_complete( &self, assoc_cfg: &WlanAssociationConfig ) -> Self::NotifyAssociationCompleteResponseFut

§

type ClearAssociationResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn clear_association( &self, payload: &WlanSoftmacBaseClearAssociationRequest ) -> Self::ClearAssociationResponseFut

§

type StartPassiveScanResponseFut = QueryResponseFut<Result<WlanSoftmacBaseStartPassiveScanResponse, i32>>

source§

fn start_passive_scan( &self, payload: &WlanSoftmacBaseStartPassiveScanRequest ) -> Self::StartPassiveScanResponseFut

§

type StartActiveScanResponseFut = QueryResponseFut<Result<WlanSoftmacBaseStartActiveScanResponse, i32>>

source§

fn start_active_scan( &self, payload: &WlanSoftmacStartActiveScanRequest ) -> Self::StartActiveScanResponseFut

§

type CancelScanResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn cancel_scan( &self, payload: &WlanSoftmacBaseCancelScanRequest ) -> Self::CancelScanResponseFut

§

type UpdateWmmParametersResponseFut = QueryResponseFut<Result<(), i32>>

source§

fn update_wmm_parameters( &self, payload: &WlanSoftmacBaseUpdateWmmParametersRequest ) -> Self::UpdateWmmParametersResponseFut

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more