migrated to sdbus-cpp v2

This commit is contained in:
lasan
2026-03-19 20:23:24 +05:30
parent 45406089e1
commit e0a888a51f
33 changed files with 198 additions and 186 deletions
@@ -63,7 +63,7 @@ std::string WifiLanServerSocket::GetIPAddress() const {
}
if (address_data.size() > 0) {
std::string ip_address = address_data[0]["address"];
std::string ip_address = address_data[0]["address"].get<std::string>();
struct in_addr addr {};
if (inet_aton(ip_address.c_str(), &addr) == 0) {
LOG(ERROR) << __func__