summaryrefslogtreecommitdiff
path: root/src/core/execute.h
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-08-18 19:55:32 +0200
committerDaniel Mack <daniel@zonque.org>2014-09-08 11:06:45 +0200
commitbb7dd0b04a6e89674100476eed0bbd05c6a4cbd8 (patch)
tree7d07b57edee71671c18b7bba706072835cd1aec8 /src/core/execute.h
parent5369c77d2ee864ac0464d4adc0774ee70ba9c4bc (diff)
bus: add kdbus endpoint types
Add types to describe endpoints and associated policy entries, and add a BusEndpoint instace to ExecContext.
Diffstat (limited to 'src/core/execute.h')
-rw-r--r--src/core/execute.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/execute.h b/src/core/execute.h
index f31f0c9f27..e3cebfd72c 100644
--- a/src/core/execute.h
+++ b/src/core/execute.h
@@ -41,6 +41,7 @@ typedef struct ExecParameters ExecParameters;
#include "fdset.h"
#include "missing.h"
#include "namespace.h"
+#include "bus-endpoint.h"
typedef enum ExecInput {
EXEC_INPUT_NULL,
@@ -188,6 +189,9 @@ struct ExecContext {
bool ioprio_set:1;
bool cpu_sched_set:1;
bool no_new_privileges_set:1;
+
+ /* custom dbus enpoint */
+ BusEndpoint *bus_endpoint;
};
#include "cgroup.h"