mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 19:29:07 +02:00
- some read modification including changing direction - also some performance tuning - not yet ready! This version does not work at all modified: include/constants_errors.php
8 lines
190 B
PHP
8 lines
190 B
PHP
<?php
|
|
define('SUCCESS ', 0);
|
|
define('ERROR_FILE_NOT_FOUND', 1);
|
|
define('ERROR_FILE_CANT_CLOSE', 2);
|
|
define('ERROR_FILE_EOF', 3);
|
|
define('ERROR_FILE_BOF', 4);
|
|
define('ERROR_UNDEFINED', 5);
|
|
?>
|