Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* fixes esp8266#3795

* adds beacon_interval and authmode to softap_config_equal
  • Loading branch information
tablatronix authored and devyte committed Nov 22, 2017
1 parent c40d8a9 commit 7b09ae5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 7b09ae5

Please sign in to comment.