aboutsummaryrefslogtreecommitdiffstats
path: root/Sources/Shared/Logging/ringlogger.h
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/Shared/Logging/ringlogger.h')
-rw-r--r--Sources/Shared/Logging/ringlogger.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Sources/Shared/Logging/ringlogger.h b/Sources/Shared/Logging/ringlogger.h
new file mode 100644
index 0000000..c63f3e4
--- /dev/null
+++ b/Sources/Shared/Logging/ringlogger.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.
+ */
+
+#ifndef RINGLOGGER_H
+#define RINGLOGGER_H
+
+#include <stdint.h>
+
+struct log;
+void write_msg_to_log(struct log *log, const char *tag, const char *msg);
+int write_log_to_file(const char *file_name, const struct log *input_log);
+uint32_t view_lines_from_cursor(const struct log *input_log, uint32_t cursor, void *ctx, void(*)(const char *, uint64_t, void *));
+struct log *open_log(const char *file_name);
+void close_log(struct log *log);
+
+#endif