]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-bus.h
Merge pull request #15891 from bluca/host_os_release
[thirdparty/systemd.git] / src / resolve / resolved-bus.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "bus-object.h"
5 #include "resolved-manager.h"
6
7 extern const BusObjectImplementation manager_object;
8
9 int manager_connect_bus(Manager *m);
10 int _manager_send_changed(Manager *manager, const char *property, ...) _sentinel_;
11 #define manager_send_changed(manager, ...) _manager_send_changed(manager, __VA_ARGS__, NULL)
12 int bus_dns_server_append(sd_bus_message *reply, DnsServer *s, bool with_ifindex);
13 int bus_property_get_resolve_support(sd_bus *bus, const char *path, const char *interface,
14 const char *property, sd_bus_message *reply,
15 void *userdata, sd_bus_error *error);