diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-11-29 20:09:41 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-11-29 20:14:11 +0100 |
commit | a9ed78b0ca1caa8cdb8caecdb5c1fe776974c434 (patch) | |
tree | e8216765a0b267d98f39583a645118bf8788a23a /src/libsystemd-bus/kdbus.h | |
parent | 197941a8d5d74d79ca45ae73ec114939a8e88244 (diff) |
kdbus: add base enums for items
Diffstat (limited to 'src/libsystemd-bus/kdbus.h')
-rw-r--r-- | src/libsystemd-bus/kdbus.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libsystemd-bus/kdbus.h b/src/libsystemd-bus/kdbus.h index d419772f52..c9377ea277 100644 --- a/src/libsystemd-bus/kdbus.h +++ b/src/libsystemd-bus/kdbus.h @@ -91,7 +91,8 @@ enum { _KDBUS_ITEM_NULL, /* Filled in by userspace */ - KDBUS_ITEM_PAYLOAD_VEC, /* .data_vec, reference to memory area */ + _KDBUS_ITEM_USER_BASE = 1, + KDBUS_ITEM_PAYLOAD_VEC = 1,/* .data_vec, reference to memory area */ KDBUS_ITEM_PAYLOAD_OFF, /* .data_vec, reference to memory area */ KDBUS_ITEM_PAYLOAD_MEMFD, /* file descriptor of a special data file */ KDBUS_ITEM_FDS, /* .data_fds of file descriptors */ @@ -100,6 +101,7 @@ enum { KDBUS_ITEM_PRIORITY, /* queue priority for message */ /* Filled in by kernelspace */ + _KDBUS_ITEM_ATTACH_BASE = 0x400, KDBUS_ITEM_NAMES = 0x400,/* NUL separated string list with well-known names of source */ KDBUS_ITEM_TIMESTAMP, /* .timestamp */ @@ -115,6 +117,7 @@ enum { KDBUS_ITEM_AUDIT, /* .audit */ /* Special messages from kernel, consisting of one and only one of these data blocks */ + _KDBUS_ITEM_KERNEL_BASE = 0x800, KDBUS_ITEM_NAME_ADD = 0x800,/* .name_change */ KDBUS_ITEM_NAME_REMOVE, /* .name_change */ KDBUS_ITEM_NAME_CHANGE, /* .name_change */ |