getWifiReconnects -> getNetworkReconnects

This commit is contained in:
proddy
2026-05-03 08:43:28 +02:00
parent da3ed6cd3a
commit 9ff4be41f7
3 changed files with 4 additions and 8 deletions

View File

@@ -89,10 +89,6 @@ class Network {
void begin();
void loop();
uint16_t getWifiReconnects() const {
return connectcount_;
}
uint32_t network_ip() const {
return network_ip_;
}
@@ -121,7 +117,7 @@ class Network {
return has_ipv6_ && (network_iface_ == NetIface::WIFI || network_iface_ == NetIface::ETHERNET);
}
uint16_t getWifiReconnects() {
uint16_t getNetworkReconnects() {
return connectcount_;
}