2003-02-19 16:40:19 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) The PHP Group |
|
2003-02-19 16:40:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-02-19 16:40:19 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2021-05-06 18:16:35 +08:00
|
|
|
| https://www.php.net/license/3_01.txt |
|
2003-02-19 16:40:19 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2000-05-29 00:22:28 +08:00
|
|
|
#ifndef PHP_SYSLOG_H
|
|
|
|
#define PHP_SYSLOG_H
|
|
|
|
|
2017-08-10 10:55:25 +08:00
|
|
|
#include "php.h"
|
|
|
|
|
2000-05-29 00:22:28 +08:00
|
|
|
#ifdef PHP_WIN32
|
|
|
|
#include "win32/syslog.h"
|
|
|
|
#else
|
2005-01-10 05:05:06 +08:00
|
|
|
#include <php_config.h>
|
2001-02-25 05:08:15 +08:00
|
|
|
#ifdef HAVE_SYSLOG_H
|
2000-05-29 00:22:28 +08:00
|
|
|
#include <syslog.h>
|
|
|
|
#endif
|
2001-02-25 05:08:15 +08:00
|
|
|
#endif
|
2000-05-29 00:22:28 +08:00
|
|
|
|
2017-08-12 02:30:50 +08:00
|
|
|
/* Syslog filters */
|
2018-07-22 23:29:35 +08:00
|
|
|
#define PHP_SYSLOG_FILTER_ALL 0
|
2017-08-12 02:30:50 +08:00
|
|
|
#define PHP_SYSLOG_FILTER_NO_CTRL 1
|
|
|
|
#define PHP_SYSLOG_FILTER_ASCII 2
|
2019-06-15 15:31:16 +08:00
|
|
|
#define PHP_SYSLOG_FILTER_RAW 3
|
2017-08-12 02:30:50 +08:00
|
|
|
|
2017-08-10 10:55:25 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2021-07-16 01:08:26 +08:00
|
|
|
PHPAPI void php_syslog_str(int priority, const zend_string* message);
|
2017-08-10 10:55:25 +08:00
|
|
|
PHPAPI void php_syslog(int, const char *format, ...);
|
2017-08-23 06:34:06 +08:00
|
|
|
PHPAPI void php_openlog(const char *, int, int);
|
2022-06-20 05:56:44 +08:00
|
|
|
PHPAPI void php_closelog(void);
|
2017-08-10 10:55:25 +08:00
|
|
|
END_EXTERN_C()
|
2000-06-10 01:21:40 +08:00
|
|
|
|
2000-05-29 00:22:28 +08:00
|
|
|
#endif
|