diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-07-01 20:17:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-02 10:43:57 +0200 |
commit | e156d769c3ee756cdb20f8522ace9ea459a82655 (patch) | |
tree | 478af421d4a2b6274cc086a28c89a4471b1d1a99 /src/journal/journald.h | |
parent | 29252e9e5bad3b0bcfc45d9bc761aee4b0ece1da (diff) |
journald: add Storage= setting to control where the journal is stored
Diffstat (limited to 'src/journal/journald.h')
-rw-r--r-- | src/journal/journald.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/journal/journald.h b/src/journal/journald.h index 159364d930..34deb8561e 100644 --- a/src/journal/journald.h +++ b/src/journal/journald.h @@ -33,6 +33,15 @@ #include "journal-rate-limit.h" #include "list.h" +typedef enum Storage { + STORAGE_AUTO, + STORAGE_VOLATILE, + STORAGE_PERMANENT, + STORAGE_NONE, + _STORAGE_MAX, + _STORAGE_INVALID = -1 +} Storage; + typedef struct StdoutStream StdoutStream; typedef struct Server { @@ -86,9 +95,16 @@ typedef struct Server { int max_level_syslog; int max_level_kmsg; int max_level_console; + + Storage storage; } Server; /* gperf lookup function */ const struct ConfigPerfItem* journald_gperf_lookup(const char *key, unsigned length); +int config_parse_storage(const char *filename, unsigned line, const char *section, const char *lvalue, int ltype, const char *rvalue, void *data, void *userdata); + +const char *storage_to_string(Storage s); +Storage storage_from_string(const char *s); + #endif |