/* Syslog constants. Copyright (C) 2011-2020 Sergey Poznyakoff This program 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. This program 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 this program. If not, see . */ module 'syslog'. /* This prefix will be prepended to each const identifier below when creating a corresponding C define. */ #prefix _MFL_ const LOG_EMERG 0 const LOG_ALERT 1 const LOG_CRIT 2 const LOG_ERR 3 const LOG_WARNING 4 const LOG_NOTICE 5 const LOG_INFO 6 const LOG_DEBUG 7 const LOG_PRIMASK 0x07 const LOG_KERN 0 const LOG_USER (1<<3) const LOG_MAIL (2<<3) const LOG_DAEMON (3<<3) const LOG_AUTH (4<<3) const LOG_SYSLOG (5<<3) const LOG_LPR (6<<3) const LOG_NEWS (7<<3) const LOG_UUCP (8<<3) const LOG_CRON (9<<3) const LOG_AUTHPRIV (10<<3) const LOG_FTP (11<<3) const LOG_LOCAL0 (16<<3) const LOG_LOCAL1 (17<<3) const LOG_LOCAL2 (18<<3) const LOG_LOCAL3 (19<<3) const LOG_LOCAL4 (20<<3) const LOG_LOCAL5 (21<<3) const LOG_LOCAL6 (22<<3) const LOG_LOCAL7 (23<<3)