1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00
* fixes #3795

* adds beacon_interval and authmode to softap_config_equal
This commit is contained in:
Shawn A 2017-11-22 16:01:22 -06:00 committed by Develo
parent c40d8a990e
commit 7b09ae5f69

View File

@ -69,6 +69,12 @@ static bool softap_config_equal(const softap_config& lhs, const softap_config& r
if(lhs.max_connection != rhs.max_connection) { if(lhs.max_connection != rhs.max_connection) {
return false; return false;
} }
if(lhs.beacon_interval != rhs.beacon_interval) {
return false;
}
if(lhs.authmode != rhs.authmode) {
return false;
}
return true; return true;
} }