diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-01-22 16:09:59 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-01-22 16:09:59 +0100 |
commit | 5972fe953ec56c77936a1e612ca87d8a0e6c0c64 (patch) | |
tree | 515ee99fed073c4184a84eb5ee7cdb55bdf43900 /src/libsystemd/sd-bus/bus-internal.h | |
parent | 7f96b1d8147b164bc7c8ce119aeea5fed6ceecb7 (diff) |
bus: add support for attaching name to bus connections for debugging purposes
Diffstat (limited to 'src/libsystemd/sd-bus/bus-internal.h')
-rw-r--r-- | src/libsystemd/sd-bus/bus-internal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libsystemd/sd-bus/bus-internal.h b/src/libsystemd/sd-bus/bus-internal.h index 7c92293771..69e07018d8 100644 --- a/src/libsystemd/sd-bus/bus-internal.h +++ b/src/libsystemd/sd-bus/bus-internal.h @@ -164,6 +164,8 @@ struct sd_bus { bool trusted:1; bool fake_creds_valid:1; bool manual_peer_interface:1; + bool is_system:1; + bool is_user:1; int use_memfd; @@ -267,6 +269,8 @@ struct sd_bus { char *fake_label; char *cgroup_root; + + char *connection_name; }; #define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC)) |