|
@@ -190,6 +190,18 @@ public:
|
|
|
return "";
|
|
|
}
|
|
|
|
|
|
+ std::string GetWPAGroupCiphersWPA(void) {
|
|
|
+ if(m_groupCiphersWPA.size() > 0)
|
|
|
+ return ConcatStrings(m_groupCiphersWPA);
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
+ std::string GetWPAPairwiseCiphersWPA(void) {
|
|
|
+ if(m_pairwCiphersWPA.size() > 0)
|
|
|
+ return ConcatStrings(m_pairwCiphersWPA);
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
bool GetConnected(void) const {
|
|
|
return m_bConnected;
|
|
|
}
|
|
@@ -205,6 +217,8 @@ public:
|
|
|
std::vector<uint32_t> m_bitRates;
|
|
|
std::vector<std::string> m_groupCiphers;
|
|
|
std::vector<std::string> m_pairwCiphers;
|
|
|
+ std::vector<std::string> m_groupCiphersWPA;
|
|
|
+ std::vector<std::string> m_pairwCiphersWPA;
|
|
|
|
|
|
double freqHz; // Frequency/channel in Hz
|
|
|
struct sockaddr ap_addr; // MAC address
|
|
@@ -366,6 +380,18 @@ public:
|
|
|
return "";
|
|
|
}
|
|
|
|
|
|
+ std::string GetWPAGroupCiphersWPA(int cellidx) {
|
|
|
+ if((cellidx >= 0) && (cellidx < (int)m_scres.size()))
|
|
|
+ return m_scres[cellidx].GetWPAGroupCiphersWPA();
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
+ std::string GetWPAPairwiseCiphersWPA(int cellidx) {
|
|
|
+ if((cellidx >= 0) && (cellidx < (int)m_scres.size()))
|
|
|
+ return m_scres[cellidx].GetWPAPairwiseCiphersWPA();
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+
|
|
|
bool GetConnected(int cellidx) const {
|
|
|
if((cellidx >= 0) && (cellidx < (int)m_scres.size()))
|
|
|
return m_scres[cellidx].GetConnected();
|