refactor(network): process all messages
This commit is contained in:
parent
a68011bce6
commit
8351dea292
|
@ -396,9 +396,11 @@ int waybar::modules::Network::netlinkResponse(void *resp,
|
||||||
}
|
}
|
||||||
|
|
||||||
int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
|
int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
|
||||||
|
int ret = 0;
|
||||||
auto net = static_cast<waybar::modules::Network *>(data);
|
auto net = static_cast<waybar::modules::Network *>(data);
|
||||||
bool need_update = false;
|
bool need_update = false;
|
||||||
nlmsghdr *nh = nlmsg_hdr(msg);
|
for (nlmsghdr *nh = nlmsg_hdr(msg); NLMSG_OK(nh, ret);
|
||||||
|
nh = NLMSG_NEXT(nh, ret)) {
|
||||||
if (nh->nlmsg_type == RTM_NEWADDR) {
|
if (nh->nlmsg_type == RTM_NEWADDR) {
|
||||||
need_update = true;
|
need_update = true;
|
||||||
}
|
}
|
||||||
|
@ -409,9 +411,12 @@ int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
|
||||||
if (!(rtif->ifi_flags & IFF_RUNNING)) {
|
if (!(rtif->ifi_flags & IFF_RUNNING)) {
|
||||||
net->disconnected();
|
net->disconnected();
|
||||||
net->dp.emit();
|
net->dp.emit();
|
||||||
|
return NL_SKIP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (need_update) break;
|
||||||
|
}
|
||||||
if (net->ifid_ <= 0 && !net->config_["interface"].isString()) {
|
if (net->ifid_ <= 0 && !net->config_["interface"].isString()) {
|
||||||
for (uint8_t i = 0; i < MAX_RETRY; i += 1) {
|
for (uint8_t i = 0; i < MAX_RETRY; i += 1) {
|
||||||
net->ifid_ = net->getExternalInterface();
|
net->ifid_ = net->getExternalInterface();
|
||||||
|
|
Loading…
Reference in New Issue