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.c | |
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.c')
-rw-r--r-- | src/bus-proxyd/synthesize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bus-proxyd/synthesize.c b/src/bus-proxyd/synthesize.c index 542166f68a..67bcc7a242 100644 --- a/src/bus-proxyd/synthesize.c +++ b/src/bus-proxyd/synthesize.c @@ -30,7 +30,7 @@ #include "bus-util.h" #include "synthesize.h" -static int synthetic_driver_send(sd_bus *b, sd_bus_message *m) { +int synthetic_driver_send(sd_bus *b, sd_bus_message *m) { int r; assert(b); |