qcacmn: Add changes for PN check in REO

Setup PN check in REO for Security mode.

Change-Id: I682cda20907b7f64ba18bfef9927b7f8d72d2b54
This commit is contained in:
Gurumoorthi Gnanasambandhan
2017-05-24 00:10:59 +05:30
committed by snandini
parent d6789e55d3
commit ed4bcf8e9d
14 changed files with 263 additions and 14 deletions

View File

@@ -210,6 +210,27 @@ enum ol_txrx_peer_state {
OL_TXRX_PEER_STATE_AUTH, /* authentication successful */
};
/**
* struct cdp_sec_type - security type information
*/
enum cdp_sec_type {
cdp_sec_type_none,
cdp_sec_type_wep128,
cdp_sec_type_wep104,
cdp_sec_type_wep40,
cdp_sec_type_tkip,
cdp_sec_type_tkip_nomic,
cdp_sec_type_aes_ccmp,
cdp_sec_type_wapi,
cdp_sec_type_aes_ccmp_256,
cdp_sec_type_aes_gcmp,
cdp_sec_type_aes_gcmp_256,
/* keep this last! */
cdp_num_sec_types
};
typedef struct cdp_soc_t *ol_txrx_soc_handle;
/**