2011-11-14 15:57:52 +01:00
/*
* errmsg . h , SJ
*/
# ifndef _ERRMSG_H
# define _ERRMSG_H
# define ERR_CANNOT_READ_FROM_POOL "ERR: cannot read from pool"
# define ERR_SIGACTION "sigaction failed"
# define ERR_OPEN_SOCKET "ERR: cannot open socket"
# define ERR_SET_SOCK_OPT "ERR: cannot set socket option"
# define ERR_BIND_TO_PORT "ERR: cannot bind to port"
# define ERR_LISTEN "ERR: cannot listen"
# define ERR_SETUID "ERR: setuid()"
# define ERR_SETGID "ERR: setgid()"
# define ERR_SELECT "ERR: select()"
# define ERR_CHDIR "ERR: chdir() to working directory failed"
2015-12-28 14:50:37 +01:00
# define ERR_DAEMON "ERR: daemon()"
2011-11-14 15:57:52 +01:00
# define ERR_OPEN_TMP_FILE "ERR: opening a tempfile"
# define ERR_TIMED_OUT "ERR: timed out"
# define ERR_FORK_FAILED "ERR: cannot fork()"
2015-05-09 14:31:20 +02:00
# define ERR_OPEN_DEDUP_FILE "ERR: cannot open dedup file"
2018-01-11 10:56:32 +01:00
# define ERR_PID_FILE_EXISTS "ERR: pidfile exists. If piler daemon is not running, and the pidfile exists (unclean shutdown?) then remove it, and start piler again"
2011-11-14 15:57:52 +01:00
# define ERR_MYSQL_CONNECT "Cannot connect to mysql server"
# define ERR_PSQL_CONNECT "Cannot connect to PSql server"
# define ERR_SQLITE3_OPEN "Cannot open sqlite3 database"
# define ERR_SQL_DATA "No valid data from sql table"
# define ERR_NON_EXISTENT_USER "ERR: non existent user in config file, see the 'username' variable"
# define ERR_READING_KEY "ERR: reading cipher key"
2015-12-09 21:19:14 +01:00
# define ERR_LICENCE "ERR: licence validation error"
# define ERR_LICENCE_IP "ERR: licenced IP-address doesn't match with listen_addr parameter"
2011-11-14 15:57:52 +01:00
# endif /* _ERRMSG_H */