Skip to content

Commit dc90f97

Browse files
committed
adds beacon_interval and authmode to softap_config_equal
1 parent 39bb081 commit dc90f97

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)