qcacmn: add support for CoAP

Add support for Constrained Application Protocol.

Change-Id: I425206a990778cf946a4805192eff4d54562a945
CRs-Fixed: 3254128
This commit is contained in:
Yu Wang
2022-07-27 14:33:31 +08:00
committed by Madan Koyyalamudi
vanhempi 6efe5cf271
commit 67011a392c
8 muutettua tiedostoa jossa 168 lisäystä ja 1 poistoa

Näytä tiedosto

@@ -288,6 +288,7 @@ typedef void (*wlan_objmgr_peer_status_handler)(
* @WLAN_LITE_MON_ID: Lite monitor operations
* @WLAN_PRE_CAC_ID: Pre-CAC operations
* @WLAN_DP_ID: DP component
* @WLAN_COAP_ID: Constrained Application Protocol reference id
* @WLAN_REF_ID_MAX: Max id used to generate ref count tracking array
*/
/* New value added to the enum must also be reflected in function
@@ -394,6 +395,7 @@ typedef enum {
WLAN_PRE_CAC_ID = 96,
WLAN_DP_ID = 97,
WLAN_UMAC_RESET_ID = 98,
WLAN_COAP_ID = 99,
WLAN_REF_ID_MAX,
} wlan_objmgr_ref_dbgid;
@@ -504,7 +506,8 @@ static inline const char *string_from_dbgid(wlan_objmgr_ref_dbgid id)
"WLAN_TWT_ID",
"WLAN_LITE_MON_ID",
"WLAN_PRE_CAC_ID",
"WLAN_DP_ID"
"WLAN_DP_ID",
"WLAN_COAP_ID"
};
if (id >= WLAN_REF_ID_MAX)