1
0
forked from bip/bip
This commit is contained in:
nohar 2007-01-12 22:19:29 +00:00
parent 9e3d62764f
commit a2a8e0a193

View File

@ -46,15 +46,15 @@ hash_t adm_users;
/* log options, for sure the trickiest :) */ /* log options, for sure the trickiest :) */
/* no backlog at all */ /* no backlog at all */
int conf_backlog; int conf_backlog = 0;
int conf_memlog; extern int conf_memlog;
int conf_log; int conf_log = 0;
/* number of lines in backlog */ /* number of lines in backlog */
int conf_backlog_lines = 10; int conf_backlog_lines = 10;
int conf_backlog_no_timestamp; int conf_backlog_no_timestamp = 0;
/* backlog even lines already backlogged */ /* backlog even lines already backlogged */
int conf_always_backlog; int conf_always_backlog = 0;
int conf_log_sync_interval; int conf_log_sync_interval = 0;
int conf_blreset_on_talk = 0; int conf_blreset_on_talk = 0;
int conf_bl_msg_only = 0; int conf_bl_msg_only = 0;