chiark / gitweb /
sd-netlink: rename from sd-rtnl
[elogind.git] / src / libelogind / sd-hwdb / hwdb-util.h
index 11dd0d407f8ed63f54e479ba8b52545d309181af..627c46be13b7d3895263afc044e3800d915c5df5 100644 (file)
@@ -1,7 +1,5 @@
 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
-#pragma once
-
 /***
   This file is part of systemd.
 
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#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);