/* * 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