aboutsummaryrefslogtreecommitdiff
path: root/src/pies_syslog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pies_syslog.h')
-rw-r--r--src/pies_syslog.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/pies_syslog.h b/src/pies_syslog.h
new file mode 100644
index 0000000..bf83714
--- /dev/null
+++ b/src/pies_syslog.h
@@ -0,0 +1,37 @@
+/* This file is part of GNU Pies.
+ Copyright (C) 2007-2020 Sergey Poznyakoff
+
+ GNU Pies is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3, or (at your option)
+ any later version.
+
+ GNU Pies is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNU Pies. If not, see <http://www.gnu.org/licenses/>. */
+
+#define PIES_LOG_BUF_SIZE 1024
+#define PIES_LOG_DEV "/dev/log"
+#define PIES_LOG_MAX_QUEUE 64
+
+int pies_syslog_open (void);
+void pies_syslog_close (void);
+void pies_syslog (int pri, char const *fmt, ...);
+void pies_vsyslog (int pri, char const *fmt, va_list ap);
+void pies_syslog_flush (void);
+void pies_syslog_message (int prio, char const *text, char const *tag, pid_t pid);
+
+extern char *pies_fallback_file;
+extern char *pies_log_dev;
+extern char *pies_log_tag;
+extern int pies_log_facility;
+extern size_t pies_log_max_queue;
+
+
+
+
+

Return to:

Send suggestions and report system problems to the System administrator.