diff options
author | Kay Sievers <kay@vrfy.org> | 2014-10-17 10:09:14 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-10-17 10:12:44 +0200 |
commit | c32195e057e5bf903c2645e273ba82f32c0106d3 (patch) | |
tree | 76629720fe7f46e6cea892b6096036aa828d9bea /src/libsystemd/sd-bus/kdbus.h | |
parent | f60e98b33646e7a3317553e13bac591a98ce41c0 (diff) |
Revert "sd-bus: sync kdbus.h (ABI break)"
This reverts commit 1a2409e262da65a4b0ca8ab18fcf5eabd2d404ca.
Support from the kdbus interface was removed. We require
memfds to be supported by all clients.
Diffstat (limited to 'src/libsystemd/sd-bus/kdbus.h')
-rw-r--r-- | src/libsystemd/sd-bus/kdbus.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libsystemd/sd-bus/kdbus.h b/src/libsystemd/sd-bus/kdbus.h index 1ea4329ea2..79a17f3449 100644 --- a/src/libsystemd/sd-bus/kdbus.h +++ b/src/libsystemd/sd-bus/kdbus.h @@ -500,8 +500,6 @@ enum kdbus_policy_type { * enum kdbus_hello_flags - flags for struct kdbus_cmd_hello * @KDBUS_HELLO_ACCEPT_FD: The connection allows the reception of * any passed file descriptors - * @KDBUS_HELLO_ACCEPT_MEMFD: The connection allows the reception of - * any passed memfd file descriptors * @KDBUS_HELLO_ACTIVATOR: Special-purpose connection which registers * a well-know name for a process to be started * when traffic arrives @@ -516,10 +514,9 @@ enum kdbus_policy_type { */ enum kdbus_hello_flags { KDBUS_HELLO_ACCEPT_FD = 1ULL << 0, - KDBUS_HELLO_ACCEPT_MEMFD = 1ULL << 1, - KDBUS_HELLO_ACTIVATOR = 1ULL << 2, - KDBUS_HELLO_POLICY_HOLDER = 1ULL << 3, - KDBUS_HELLO_MONITOR = 1ULL << 4, + KDBUS_HELLO_ACTIVATOR = 1ULL << 1, + KDBUS_HELLO_POLICY_HOLDER = 1ULL << 2, + KDBUS_HELLO_MONITOR = 1ULL << 3, }; /** |