26eb9c28d7
backlog_reset_on_talk no works per query/channel. Setting backlog_reset_connection to true falls back to the former kind of backlog reset.
32 lines
975 B
C
32 lines
975 B
C
/*
|
|
* $Id: irc.h,v 1.43 2005/04/21 06:58:50 nohar Exp $
|
|
*
|
|
* This file is part of the bip project
|
|
* Copyright (C) 2004 2005 Arnaud Cornet and Loïc Gomez
|
|
*
|
|
* 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
|
|
|
|
#define DEFAULT_BACKLOG 1
|
|
#define DEFAULT_ALWAYS_BACKLOG 0
|
|
#define DEFAULT_BL_MSG_ONLY 0
|
|
#define DEFAULT_BACKLOG_LINES 10
|
|
#define DEFAULT_BACKLOG_NO_TIMESTAMP 0
|
|
#define DEFAULT_BLRESET_ON_TALK 0
|
|
#define DEFAULT_BLRESET_CONNECTION 0
|
|
#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"
|
|
#define DEFAULT_BIP_USE_NOTICE 0
|
|
|
|
#endif /* DEFAULTS_H */
|