1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-06 08:26:52 +03:00

timesyncd: read global operational state from networkd

This commit is contained in:
Tom Gundersen 2014-05-08 17:32:32 +02:00
parent bbf7c04821
commit 9b3310b066

View File

@ -1063,25 +1063,13 @@ static int manager_parse_config_file(Manager *m) {
}
static bool network_is_online(void) {
_cleanup_free_ unsigned *indices = NULL;
int r, n, i;
_cleanup_free_ char *state = NULL;
int r;
n = sd_network_get_ifindices(&indices);
if (n <= 0)
return false;
for (i = 0; i < n; i++) {
_cleanup_free_ char *oper_state = NULL;
if (sd_network_link_is_loopback(indices[i]))
/* ignore loopback devices */
continue;
r = sd_network_get_link_operational_state(indices[i], &oper_state);
if (r >= 0 && streq(oper_state, "carrier"))
r = sd_network_get_operational_state(&state);
if (r >= 0 && streq("carrier", state))
return true;
}
else
return false;
}