From: Will Huang Date: Mon, 28 Aug 2023 02:15:56 +0000 (+0530) Subject: Change QCA vendor configure attribution name of peer MAC address X-Git-Tag: hostap_2_11~1006 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3d852560bda3f05c745fe1609cc7fd0da4612ea;p=thirdparty%2Fhostap.git Change QCA vendor configure attribution name of peer MAC address Rename the attribute QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_PEER_MAC to a generic name QCA_WLAN_VENDOR_ATTR_CONFIG_PEER_MAC, so other configuration commands can reuse it. And make backward compatibility of QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_PEER_MAC, define it as same value of QCA_WLAN_VENDOR_ATTR_CONFIG_PEER_MAC (35). Signed-off-by: Will Huang --- diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 34aa41ce7..77581e745 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -2585,7 +2585,10 @@ enum qca_wlan_vendor_attr_config { /* 32-bit unsigned value to set reorder timeout for AC_BK */ QCA_WLAN_VENDOR_ATTR_CONFIG_RX_REORDER_TIMEOUT_BACKGROUND = 34, /* 6-byte MAC address to point out the specific peer */ - QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_PEER_MAC = 35, + QCA_WLAN_VENDOR_ATTR_CONFIG_PEER_MAC = 35, + /* Backward compatibility with the original name */ + QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_PEER_MAC = + QCA_WLAN_VENDOR_ATTR_CONFIG_PEER_MAC, /* 32-bit unsigned value to set window size for specific peer */ QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_WINLIMIT = 36, /* 8-bit unsigned value to set the beacon miss threshold in 2.4 GHz */