mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
revert(network): wait interface
This commit is contained in:
parent
8f8ec3b999
commit
08bfdda4cb
@ -52,7 +52,6 @@ void waybar::modules::Network::worker()
|
||||
return;
|
||||
}
|
||||
bool need_update = false;
|
||||
bool new_addr = false;
|
||||
for (auto nh = reinterpret_cast<struct nlmsghdr *>(buf); NLMSG_OK(nh, len);
|
||||
nh = NLMSG_NEXT(nh, len)) {
|
||||
if (nh->nlmsg_type == NLMSG_DONE) {
|
||||
@ -61,9 +60,6 @@ void waybar::modules::Network::worker()
|
||||
if (nh->nlmsg_type == NLMSG_ERROR) {
|
||||
continue;
|
||||
}
|
||||
if (nh->nlmsg_type == RTM_NEWADDR) {
|
||||
new_addr = true;
|
||||
}
|
||||
if (nh->nlmsg_type < RTM_NEWADDR) {
|
||||
auto rtif = static_cast<struct ifinfomsg *>(NLMSG_DATA(nh));
|
||||
if (rtif->ifi_index == static_cast<int>(ifid_)) {
|
||||
@ -75,15 +71,9 @@ void waybar::modules::Network::worker()
|
||||
}
|
||||
}
|
||||
if (ifid_ <= 0 && !config_["interface"].isString()) {
|
||||
if (new_addr) {
|
||||
// Need to wait before get external interface
|
||||
while (ifid_ <= 0) {
|
||||
ifid_ = getExternalInterface();
|
||||
thread_.sleep_for(std::chrono::seconds(1));
|
||||
}
|
||||
} else {
|
||||
ifid_ = getExternalInterface();
|
||||
}
|
||||
// Need to wait before get external interface
|
||||
thread_.sleep_for(std::chrono::seconds(1));
|
||||
ifid_ = getExternalInterface();
|
||||
if (ifid_ > 0) {
|
||||
char ifname[IF_NAMESIZE];
|
||||
if_indextoname(ifid_, ifname);
|
||||
|
Loading…
Reference in New Issue
Block a user