X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Flibelogind%2Fsd-hwdb%2Fhwdb-util.h;h=627c46be13b7d3895263afc044e3800d915c5df5;hp=11dd0d407f8ed63f54e479ba8b52545d309181af;hb=be954dc04aca638c0f374dc36736e3d1d7100ee8;hpb=2dd995262538b9a71022e0591381e67a728e0887 diff --git a/src/libelogind/sd-hwdb/hwdb-util.h b/src/libelogind/sd-hwdb/hwdb-util.h index 11dd0d407..627c46be1 100644 --- a/src/libelogind/sd-hwdb/hwdb-util.h +++ b/src/libelogind/sd-hwdb/hwdb-util.h @@ -1,7 +1,5 @@ /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ -#pragma once - /*** This file is part of systemd. @@ -21,14 +19,38 @@ along with systemd; If not, see . ***/ -#include "util.h" +#pragma once + +#include "sd-event.h" +#include "sd-netlink.h" +#include "sd-network.h" + +#include "hashmap.h" + +typedef struct Manager Manager; + +#include "networkd-wait-online-link.h" + +struct Manager { + Hashmap *links; + Hashmap *links_by_name; + + char **interfaces; + char **ignore; + + sd_netlink *rtnl; + sd_event_source *rtnl_event_source; + + sd_network_monitor *network_monitor; + sd_event_source *network_monitor_event_source; + + sd_event *event; +}; -#include "sd-hwdb.h" +void manager_free(Manager *m); +int manager_new(Manager **ret, char **interfaces, char **ignore, usec_t timeout); -DEFINE_TRIVIAL_CLEANUP_FUNC(sd_hwdb*, sd_hwdb_unref); -#define _cleanup_hwdb_unref_ _cleanup_(sd_hwdb_unrefp) - bool udpcsum; - bool udp6zerocsumtx; - bool udp6zerocsumrx; +DEFINE_TRIVIAL_CLEANUP_FUNC(Manager*, manager_free); -bool hwdb_validate(sd_hwdb *hwdb); +bool manager_all_configured(Manager *m); +bool manager_ignore_link(Manager *m, Link *link);