template <>
class WireServer
Defined at line 588 of file fidling/gen/sdk/fidl/fuchsia.wlan.softmac/fuchsia.wlan.softmac/cpp/fidl/fuchsia.wlan.softmac/cpp/driver/wire_messaging.h
Pure-virtual interface to be implemented by a server.
This interface uses typed channels (i.e. |::fdf::ClientEnd
<
::fuchsia_wlan_softmac::WlanSoftmacIfc>|
and |::fdf::ServerEnd
<
::fuchsia_wlan_softmac::WlanSoftmacIfc>|).
Public Methods
void ReportTxResult (::fuchsia_wlan_softmac::wire::WlanSoftmacIfcBaseReportTxResultRequest * request, fdf::Arena & arena, ReportTxResultCompleter::Sync & completer)
Reports the result of an attempted transmission.
A device driver indicates support for `ReportTxResult()` using
`fuchsia.wlan.common/DeviceExtension.report_tx_result_supported`.
void NotifyScanComplete (::fuchsia_wlan_softmac::wire::WlanSoftmacIfcBaseNotifyScanCompleteRequest * request, fdf::Arena & arena, NotifyScanCompleteCompleter::Sync & completer)
Reports completion of a scan associated with the unique `scan_id`. `status`
indicates whether the scan completed successfully, failed due to an error,
or was cancelled.
Return status indicates the reason for scan completion:
ZX_OK: All channels were scanned successfully.
ZX_ERR_CANCELLED: The scan was terminated by a user request, either an
explicit WlanSoftmac.CancelScan() or the initiation of an
incompatible request (e.g. connect).
ZX_ERR_OUT_OF_RANGE: The scan request included a prohibited channel.
This may be due to the current country setting.
void Recv (::fuchsia_wlan_softmac::wire::WlanSoftmacIfcRecvRequest * request, fdf::Arena & arena, RecvCompleter::Sync & completer)
Forward up a packet received over the wireless medium.
void WireServer ()
Defined at line 591 of file fidling/gen/sdk/fidl/fuchsia.wlan.softmac/fuchsia.wlan.softmac/cpp/fidl/fuchsia.wlan.softmac/cpp/driver/wire_messaging.h
Handler bind_handler (fdf_dispatcher_t * dispatcher)
|bind_handler| returns a handler that binds incoming connections to this
server implementation.
The returned handler borrows the server instance.
The server must outlive the provided |dispatcher|. Only after
the dispatcher is shutdown will it be safe to destroy the servers.
The server should not be moved.
void ~WireServer ()
Defined at line 592 of file fidling/gen/sdk/fidl/fuchsia.wlan.softmac/fuchsia.wlan.softmac/cpp/fidl/fuchsia.wlan.softmac/cpp/driver/wire_messaging.h