// bthddi.h
struct _BRB_L2CA_PING {
BRB_HEADER Hdr;
BTH_ADDR BtAddress;
UCHAR PingRequestLength;
UCHAR PingRequestData[MAX_L2CAP_PING_DATA_LENGTH];
UCHAR PingResponseLength;
UCHAR PingResponseData[MAX_L2CAP_PING_DATA_LENGTH];
};
View the official Windows Driver Kit DDI referenceNo description available.
The _BRB_L2CA_PING structure describes a request to ping a remote radio.
HdrA BRB_HEADER structure that contains information about the current BRB.
BtAddressThe address of the device that the ping is sent to.
PingRequestLengthThe length, in bytes, of the data to send in the ping signal.
PingRequestDataThe data to send in the ping signal.
PingResponseLengthThe length, in bytes, of the data that the remote device responded to the ping signal with.
PingResponseDataThe data that the remote device responded to the ping signal with.
To ping a remote radio, by transmitting a L2CA_EchoReq message and receiving a L2CAP_EchoRsp message, profile drivers should build and send a BRB_L2CA_PING request.
BRB_L2CA_PING is primarily used for debugging.