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:
parent
c40d8a990e
commit
7b09ae5f69
@ -69,6 +69,12 @@ static bool softap_config_equal(const softap_config& lhs, const softap_config& r
|
||||
if(lhs.max_connection != rhs.max_connection) {
|
||||
return false;
|
||||
}
|
||||
if(lhs.beacon_interval != rhs.beacon_interval) {
|
||||
return false;
|
||||
}
|
||||
if(lhs.authmode != rhs.authmode) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user