Skip to content

Commit 7b09ae5

Browse files
tablatronixdevyte
authored andcommitted
Bug #3795 (#3858)
* fixes #3795 * adds beacon_interval and authmode to softap_config_equal
1 parent c40d8a9 commit 7b09ae5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ static bool softap_config_equal(const softap_config& lhs, const softap_config& r
6969
if(lhs.max_connection != rhs.max_connection) {
7070
return false;
7171
}
72+
if(lhs.beacon_interval != rhs.beacon_interval) {
73+
return false;
74+
}
75+
if(lhs.authmode != rhs.authmode) {
76+
return false;
77+
}
7278
return true;
7379
}
7480

0 commit comments

Comments
 (0)