diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-12-09 11:12:41 +0100 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-12-09 11:14:55 +0100 |
commit | 77adde638217112c9e080035197a76f4dc4af700 (patch) | |
tree | 743b8c5e02f65c4002ec3385047b9d639c08fdd3 /src/libsystemd/sd-bus/bus-message.h | |
parent | fbf7dcb5886f4077ee0dea618447ab488ff148fc (diff) |
bus: sync with kdbus-git (ABI break)
kdbus-git gained two new features:
* memfd offsets: This allows to specify a 'start' offset in kdbus_memfd
so you can send partial memfd hunks instead of always
the full memfd
* KDBUS_HELLO_UNPRIVILEGED: If passed during HELLO, the client will be
treated as unprivileged.
Diffstat (limited to 'src/libsystemd/sd-bus/bus-message.h')
-rw-r--r-- | src/libsystemd/sd-bus/bus-message.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd/sd-bus/bus-message.h b/src/libsystemd/sd-bus/bus-message.h index 571d42255c..db5f90c5de 100644 --- a/src/libsystemd/sd-bus/bus-message.h +++ b/src/libsystemd/sd-bus/bus-message.h @@ -58,6 +58,7 @@ struct bus_body_part { size_t size; size_t mapped; size_t allocated; + size_t memfd_offset; int memfd; bool free_this:1; bool munmap_this:1; |