chiark / gitweb /
remove unused includes
[elogind.git] / src / libsystemd / sd-bus / bus-creds.h
index 15821a57d20b4f5ceecb57921f366ca80cc35401..5430e535f00f2b8a74770773de608ddd02e1ef94 100644 (file)
@@ -24,7 +24,6 @@
 #include <stdbool.h>
 
 #include "sd-bus.h"
-#include "time-util.h"
 
 struct sd_bus_creds {
         bool allocated;
@@ -40,8 +39,10 @@ struct sd_bus_creds {
         gid_t sgid;
         gid_t fsgid;
 
+        gid_t *supplementary_gids;
+        unsigned n_supplementary_gids;
+
         pid_t pid;
-        usec_t pid_starttime;
         pid_t tid;
 
         char *comm;
@@ -58,8 +59,7 @@ struct sd_bus_creds {
         char *user_unit;
         char *slice;
 
-        uint8_t *capability;
-        size_t capability_size;
+        uint32_t *capability;
 
         uint32_t audit_session_id;
         uid_t audit_login_uid;
@@ -69,6 +69,8 @@ struct sd_bus_creds {
         char *unique_name;
 
         char **well_known_names;
+        bool well_known_names_driver:1;
+        bool well_known_names_local:1;
 
         char *cgroup_root;