chiark / gitweb /
main: added support for loading IMA custom policies
[elogind.git] / src / systemd / sd-journal.h
index c635df3f2a289526c12272104c4b599b5bc4bcd8..5a2dab15694461403dd2a1ca5b48bae91e16e0d9 100644 (file)
 
 #include <systemd/sd-id128.h>
 
-/* TODO:
- *
- *   - OR of matches is borked...
- *   - extend hash tables table as we go
- *   - accelerate looking for "all hostnames" and suchlike.
- *   - handle incomplete header
- *
- *   - kann NTP nicht finden?
- *
- *   - local deserializer
- *   - http server
- *   - message catalog
- *
- *   - check LE/BE conversion for 8bit, 16bit, 32bit values
- *   - cryptographic hash
- *   - think about manipulations of header
- *   - implement audit gateway
- */
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 /* Write to daemon */
 
@@ -122,4 +107,8 @@ int sd_journal_process(sd_journal *j);
 #define SD_JOURNAL_FOREACH_UNIQUE(j, data, l)                           \
         for (sd_journal_restart_unique(j); sd_journal_enumerate_data((j), &(data), &(l)) > 0; )
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif