2007-09-27 14:44:25 +02:00
|
|
|
/*
|
|
|
|
* $Id: irc.h,v 1.43 2005/04/21 06:58:50 nohar Exp $
|
|
|
|
*
|
|
|
|
* This file is part of the bip project
|
2008-01-09 23:45:40 +01:00
|
|
|
* Copyright (C) 2004 2005 Arnaud Cornet and Loïc Gomez
|
2007-09-27 14:44:25 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* See the file "COPYING" for the exact licensing terms.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEFAULTS_H
|
|
|
|
#define DEFAULTS_H
|
|
|
|
|
2021-10-07 16:16:02 +02:00
|
|
|
#include "irc.h"
|
|
|
|
|
2007-09-27 14:44:25 +02:00
|
|
|
#define DEFAULT_BACKLOG 1
|
|
|
|
#define DEFAULT_ALWAYS_BACKLOG 0
|
|
|
|
#define DEFAULT_BL_MSG_ONLY 0
|
|
|
|
#define DEFAULT_BACKLOG_LINES 10
|
2021-10-07 16:16:02 +02:00
|
|
|
#define DEFAULT_BACKLOG_TIMESTAMP BLTSTime
|
2007-09-27 14:44:25 +02:00
|
|
|
#define DEFAULT_BLRESET_ON_TALK 0
|
2009-01-17 12:50:39 +01:00
|
|
|
#define DEFAULT_BLRESET_CONNECTION 0
|
2007-09-27 14:44:25 +02:00
|
|
|
#define DEFAULT_LOG 1
|
|
|
|
#define DEFAULT_LOG_SYSTEM 1
|
|
|
|
#define DEFAULT_LOG_SYNC_INTERVAL 5
|
|
|
|
#define DEFAULT_LOG_LEVEL LOG_INFO
|
|
|
|
#define DEFAULT_LOG_FORMAT "%u/%n/%Y-%m/%c.%d.log"
|
2007-09-28 13:20:32 +02:00
|
|
|
#define DEFAULT_BIP_USE_NOTICE 0
|
2014-12-11 17:20:14 +01:00
|
|
|
#define DEFAULT_RECONN_TIMER 120
|
2007-09-27 14:44:25 +02:00
|
|
|
|
|
|
|
#endif /* DEFAULTS_H */
|