diff options
author | Lukasz Skalski <l.skalski@samsung.com> | 2015-03-10 16:09:02 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-03-10 16:12:14 +0100 |
commit | 52fa7a3af1322aa716e5afc08b60ff2e9e13c022 (patch) | |
tree | 837cae0dfa36ee5a1ab85867b5df3f20e063b040 /src/bus-proxyd/synthesize.h | |
parent | 657cf7f4f8d376e082db48022d2be193ff647d06 (diff) |
bus-proxy: add support for "GetConnectionCredentials" method
GetConnectionCredentials method was added to dbus-1 specification
more than one year ago. This method should return "[...] as many
credentials as possible for the process connected to the server",
but at this moment only "UnixUserID", "LinuxSecurityLabel" and
"ProcessID" are defined by the specification. We should add support
for next credentials after extending dbus-1 spec.
Diffstat (limited to 'src/bus-proxyd/synthesize.h')
-rw-r--r-- | src/bus-proxyd/synthesize.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bus-proxyd/synthesize.h b/src/bus-proxyd/synthesize.h index a55f171cb2..e850350bc5 100644 --- a/src/bus-proxyd/synthesize.h +++ b/src/bus-proxyd/synthesize.h @@ -23,6 +23,8 @@ #include "sd-bus.h" +int synthetic_driver_send(sd_bus *b, sd_bus_message *m); + int synthetic_reply_method_return(sd_bus_message *call, const char *types, ...); int synthetic_reply_method_return_strv(sd_bus_message *call, char **l); |