diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-12-23 20:50:48 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-12-23 20:50:48 +0100 |
commit | fe6521272ba203ec8f0d5a94f0729960b3f90525 (patch) | |
tree | 4f67dbcaf3ffb5fbb2bc2345829136dfe7a3d3c8 /src/journal/sd-journal.h | |
parent | 6ad1d1c30621280bfad3e63fcc1c7ceb7d8ffa98 (diff) |
journal: implement stdout transport
Diffstat (limited to 'src/journal/sd-journal.h')
-rw-r--r-- | src/journal/sd-journal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/journal/sd-journal.h b/src/journal/sd-journal.h index b29680b3a2..0333db4a4d 100644 --- a/src/journal/sd-journal.h +++ b/src/journal/sd-journal.h @@ -33,7 +33,6 @@ * * - check LE/BE conversion for 8bit, 16bit, 32bit values * - implement audit gateway - * - implement stdout gateway * - extend hash tables table as we go * - accelerate looking for "all hostnames" and suchlike. * - throttling @@ -49,6 +48,8 @@ int sd_journal_printv(int priority, const char *format, va_list ap); int sd_journal_send(const char *format, ...) __attribute__((sentinel)); int sd_journal_sendv(const struct iovec *iov, int n); +int sd_journal_stream_fd(const char *tag, int priority, int priority_prefix); + /* Browse journal stream */ typedef struct sd_journal sd_journal; |