mirror of
https://github.com/systemd/systemd.git
synced 2025-03-21 02:50:18 +03:00
bus-util: introduce bus_open_system_watch_bind_with_description()
Similar to 56fbd7187a5af44a90c258fbeb1f17114f226bb3, this adds bus_open_system_watch_bind_with_description() to set description for busses.
This commit is contained in:
parent
2cb36f7c1e
commit
0ddf50ffcb
@ -1657,7 +1657,7 @@ int bus_track_add_name_many(sd_bus_track *t, char **l) {
|
||||
return r;
|
||||
}
|
||||
|
||||
int bus_open_system_watch_bind(sd_bus **ret) {
|
||||
int bus_open_system_watch_bind_with_description(sd_bus **ret, const char *description) {
|
||||
_cleanup_(sd_bus_unrefp) sd_bus *bus = NULL;
|
||||
const char *e;
|
||||
int r;
|
||||
@ -1670,6 +1670,12 @@ int bus_open_system_watch_bind(sd_bus **ret) {
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
if (description) {
|
||||
r = sd_bus_set_description(bus, description);
|
||||
if (r < 0)
|
||||
return r;
|
||||
}
|
||||
|
||||
e = secure_getenv("DBUS_SYSTEM_BUS_ADDRESS");
|
||||
if (!e)
|
||||
e = DEFAULT_SYSTEM_BUS_ADDRESS;
|
||||
|
@ -159,4 +159,7 @@ int bus_property_get_rlimit(sd_bus *bus, const char *path, const char *interface
|
||||
|
||||
int bus_track_add_name_many(sd_bus_track *t, char **l);
|
||||
|
||||
int bus_open_system_watch_bind(sd_bus **ret);
|
||||
int bus_open_system_watch_bind_with_description(sd_bus **ret, const char *description);
|
||||
static inline int bus_open_system_watch_bind(sd_bus **ret) {
|
||||
return bus_open_system_watch_bind_with_description(ret, NULL);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user