diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2021-01-23 16:16:57 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-01-25 04:31:17 +0100 |
commit | eb83eb63b8074e352935b61867702e6a01270005 (patch) | |
tree | 858cf5f6fbaa280d73f17c7db8c3b91c9a5976be /src/libsystemd/libsystemd.sym | |
parent | Avoid error when bind mount source already exists (diff) | |
download | systemd-eb83eb63b8074e352935b61867702e6a01270005.tar.xz systemd-eb83eb63b8074e352935b61867702e6a01270005.zip |
sd-bus: Add sd_bus_reply()
While sd-bus already provides sd_bus_call() for calling a method
from a complete bus message object, We don't have an equivalent
function for replying from a method with a complete bus message
object.
Currently, we use sd_bus_send(call->bus, m, NULL) instead. Let's
add a shorthand for this pattern and name it sd_bus_reply().
Diffstat (limited to 'src/libsystemd/libsystemd.sym')
-rw-r--r-- | src/libsystemd/libsystemd.sym | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd/libsystemd.sym b/src/libsystemd/libsystemd.sym index 9e9e8fd372..198b933d9d 100644 --- a/src/libsystemd/libsystemd.sym +++ b/src/libsystemd/libsystemd.sym @@ -740,6 +740,7 @@ global: LIBSYSTEMD_248 { global: sd_bus_open_user_machine; + sd_bus_reply; sd_event_source_set_ratelimit; sd_event_source_get_ratelimit; |