diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-03-30 15:21:06 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-03-30 15:21:55 +0100 |
commit | 2181a7f558eb52a22f09f8add9ac0abb4f2ee016 (patch) | |
tree | 0de6c09897dd3ff80d13a9ccfab62839e2234ae5 /src/libsystemd-bus/sd-bus.h | |
parent | a3de5ae1d7d881bbd4869c6c4a200c84bda00ced (diff) |
bus: implement server mode, and anonymous authentication
Diffstat (limited to 'src/libsystemd-bus/sd-bus.h')
-rw-r--r-- | src/libsystemd-bus/sd-bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsystemd-bus/sd-bus.h b/src/libsystemd-bus/sd-bus.h index 148a99c86f..db3b227907 100644 --- a/src/libsystemd-bus/sd-bus.h +++ b/src/libsystemd-bus/sd-bus.h @@ -33,9 +33,7 @@ extern "C" { #endif /* TODO: - * - server side * - allow installing match callbacks - * - anonymous auth * * Later: * - add page donation logic @@ -66,6 +64,8 @@ int sd_bus_set_fd(sd_bus *bus, int fd); int sd_bus_set_exec(sd_bus *bus, const char *path, char *const argv[]); int sd_bus_set_bus_client(sd_bus *bus, int b); int sd_bus_set_negotiate_fds(sd_bus *bus, int b); +int sd_bus_set_server(sd_bus *bus, int b, sd_id128_t server_id); +int sd_bus_set_anonymous(sd_bus *bus, int b); int sd_bus_start(sd_bus *ret); void sd_bus_close(sd_bus *bus); |