You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
C
21 lines
469 B
C
7 years ago
|
/*
|
||
|
* config.h: compilation config file
|
||
|
* Edit as needed.
|
||
|
*/
|
||
|
|
||
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
const int cfg_log_facility = LOG_CRON;
|
||
|
const char cfg_log_ident[] = "kairos";
|
||
|
const int cfg_log_opt = LOG_PID | LOG_NDELAY;
|
||
|
|
||
|
const char cfg_trie_file[] = "/home/ledoian/.kairos/trie"
|
||
|
const char cfg_tasks_file[] = "/home/ledoian/.kairos/tasks"
|
||
|
const char cfg_socket[] = "/tmp/kairos.sock"
|
||
|
|
||
|
const int cfg_sock_maxclients = 16;
|
||
|
const int cfg_var_name_max_len = 16;
|
||
|
|
||
|
#endif
|