BLE baseband PDU filtering interface file. More...
#include "wsf_types.h"
Go to the source code of this file.
Data Structures | |
struct | bbBlePerPduFiltParams_t |
Periodic PDU filtering parameters. More... | |
struct | bbBlePduFiltParams_t |
PDU filtering parameters. More... | |
struct | bbBlePduExtFiltParams_t |
Extended PDU filtering parameters. More... | |
struct | bbBlePduFiltResults_t |
PDU filtering results. More... | |
Macros | |
#define | BB_BLE_PDU_FILT_FLAG_IS_SET(pFilt, flag) (((pFilt)->flags & BB_BLE_PDU_FILT_FLAG_##flag) != 0) |
Check whether a flag is set. More... | |
#define | BB_BLE_PDU_FILT_SET_FLAG(pFilt, flag) (pFilt)->flags |= BB_BLE_PDU_FILT_FLAG_##flag; |
Set a flag. More... | |
Enumerations |
Functions | |
bool_t | BbBlePduFiltCheck (const uint8_t *pBuf, const bbBlePduFiltParams_t *pFiltParams, bool_t forceRes, bbBlePduFiltResults_t *pFiltResults) |
Check if PDU is allowed, i.e., should not be ignored. More... | |
bool_t | BbBleExtPduFiltCheck (const bbBlePduExtFiltParams_t *pExtFiltParams, const bbBlePduFiltParams_t *pFiltParams, bool_t forceRes, bbBlePduFiltResults_t *pFiltResults) |
Check if PDU is allowed, i.e., should not be ignored. More... | |
static void | BbBlePduFiltResultsGetPeerIdAddr (const bbBlePduFiltResults_t *pFiltResults, uint64_t *pPeerIdAddr, uint8_t *pPeerIdAddrType) |
Get the peer ID address. More... | |
static void | BbBlePduFiltResultsGetPeerRpa (const bbBlePduFiltResults_t *pFiltResults, uint64_t *pPeerRpa) |
Get the peer RPA. More... | |
BLE baseband PDU filtering interface file.
Copyright (c) 2016-2018 Arm Ltd. All Rights Reserved.
Copyright (c) 2019-2020 Packetcraft, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Definition in file bb_ble_api_pdufilt.h.