WifiAdapterAddPeer function (wificx.h)

Client drivers call the WifiAdapterAddPeer function to tell the WiFiCx framework that a peer has connected with the given address. WiFiCx will associate a queue to the peer address.

Syntax

void WifiAdapterAddPeer(
  NETADAPTER              Adapter,
  const NET_EUI48_ADDRESS *Address
);

Parameters

Adapter

[In] A handle to a NetAdapterCx NETADAPTER object obtained in a previous call to NetAdapterCreate.

Address

The peer address.

Return value

None

Remarks

The maximum number of peers that the driver may add shall not exceed the range value provided when adding Tx demultiplexing info.

For more information see Setting up multiple Tx queues.

Requirements

Requirement Value
Minimum supported client Windows 11
Minimum supported server Windows Server 2022
Header wificx.h
IRQL PASSIVE_LEVEL

See also

WifiAdapterRemovePeer

WifiAdapterInitAddTxDemux

Setting up multiple Tx queues