chiark / gitweb /
journal: make requirement for ACLs optional
[elogind.git] / src / journal / journald.h
index 47feca40aaf2743d9601e7ce316fdbabaa69c14f..1f1665bfdb53ce39d59568e2235ef65c1df15eb1 100644 (file)
@@ -40,6 +40,7 @@ typedef struct Server {
         int syslog_fd;
         int native_fd;
         int stdout_fd;
+        int proc_kmsg_fd;
 
         JournalFile *runtime_journal;
         JournalFile *system_journal;
@@ -59,6 +60,14 @@ typedef struct Server {
 
         bool compress;
 
+        bool forward_to_kmsg;
+        bool forward_to_syslog;
+        bool forward_to_console;
+
+        bool import_proc_kmsg;
+        char proc_kmsg_buffer[LINE_MAX+1];
+        size_t proc_kmsg_length;
+
         uint64_t cached_available_space;
         usec_t cached_available_space_timestamp;