summaryrefslogtreecommitdiffstats
path: root/include/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/logging.h')
-rw-r--r--include/logging.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/logging.h b/include/logging.h
new file mode 100644
index 0000000..e15170c
--- /dev/null
+++ b/include/logging.h
@@ -0,0 +1,30 @@
+#ifndef _NFT_SYNC_LOGGING_H_
+#define _NFT_SYNC_LOGGING_H_
+
+enum nft_sync_logging_type {
+ NFTS_LOG_T_FILE = 0,
+ NFTS_LOG_T_SYSLOG,
+};
+
+enum nft_sync_logging_prio {
+ NFTS_LOG_DEBUG = 0,
+ NFTS_LOG_INFO,
+ NFTS_LOG_NOTICE,
+ NFTS_LOG_ERROR,
+ NFTS_LOG_FATAL,
+ NFTS_LOG_MAX
+};
+
+struct nft_sync_inst;
+
+int nft_sync_log_init(struct nft_sync_inst *inst);
+void nft_sync_log(struct nft_sync_inst *inst, int priority,
+ const char *format, ...);
+void nft_sync_log_fini(struct nft_sync_inst *inst);
+
+#include "config.h"
+
+#define nfts_log(prio, fmt, args...) \
+ nft_sync_log(&nfts_inst, prio, fmt, ##args)
+
+#endif