diff options
Diffstat (limited to 'main/php_syslog.h')
-rw-r--r-- | main/php_syslog.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/main/php_syslog.h b/main/php_syslog.h index 28cfe171cd..d8e45acfc9 100644 --- a/main/php_syslog.h +++ b/main/php_syslog.h @@ -32,6 +32,11 @@ #endif #endif +/* Syslog filters */ +#define PHP_SYSLOG_FILTER_NONE 0 +#define PHP_SYSLOG_FILTER_NO_CTRL 1 +#define PHP_SYSLOG_FILTER_ASCII 2 + BEGIN_EXTERN_C() PHPAPI void php_syslog(int, const char *format, ...); PHPAPI void php_openlog(const char *, int, int); |