mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 20:36:38 +02:00
97 lines
3.8 KiB
C
97 lines
3.8 KiB
C
/*
|
|
* Copyright (c) 2003-2008 by FlashCode <flashcode@flashtux.org>
|
|
* See README for License detail, AUTHORS for developers list.
|
|
*
|
|
* 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef __WEECHAT_IRC_CONFIG_H
|
|
#define __WEECHAT_IRC_CONFIG_H 1
|
|
|
|
#define IRC_CONFIG_NAME "irc"
|
|
|
|
#define IRC_CONFIG_DISPLAY_AWAY_OFF 0
|
|
#define IRC_CONFIG_DISPLAY_AWAY_LOCAL 1
|
|
#define IRC_CONFIG_DISPLAY_AWAY_CHANNEL 2
|
|
|
|
enum t_irc_config_server_option
|
|
{
|
|
IRC_CONFIG_SERVER_AUTOCONNECT = 0,
|
|
IRC_CONFIG_SERVER_AUTORECONNECT,
|
|
IRC_CONFIG_SERVER_AUTORECONNECT_DELAY,
|
|
IRC_CONFIG_SERVER_ADDRESSES,
|
|
IRC_CONFIG_SERVER_IPV6,
|
|
IRC_CONFIG_SERVER_SSL,
|
|
IRC_CONFIG_SERVER_PASSWORD,
|
|
IRC_CONFIG_SERVER_NICKS,
|
|
IRC_CONFIG_SERVER_USERNAME,
|
|
IRC_CONFIG_SERVER_REALNAME,
|
|
IRC_CONFIG_SERVER_LOCAL_HOSTNAME,
|
|
IRC_CONFIG_SERVER_COMMAND,
|
|
IRC_CONFIG_SERVER_COMMAND_DELAY,
|
|
IRC_CONFIG_SERVER_AUTOJOIN,
|
|
IRC_CONFIG_SERVER_AUTOREJOIN,
|
|
IRC_CONFIG_SERVER_NOTIFY_LEVELS,
|
|
/* number of server options */
|
|
IRC_CONFIG_NUM_SERVER_OPTIONS,
|
|
};
|
|
|
|
#define IRC_CONFIG_SERVER_DEFAULT_AUTOCONNECT 0
|
|
#define IRC_CONFIG_SERVER_DEFAULT_AUTORECONNECT 1
|
|
#define IRC_CONFIG_SERVER_DEFAULT_AUTORECONNECT_DELAY 30
|
|
#define IRC_CONFIG_SERVER_DEFAULT_IPV6 0
|
|
#define IRC_CONFIG_SERVER_DEFAULT_SSL 0
|
|
#define IRC_CONFIG_SERVER_DEFAULT_COMMAND_DELAY 1
|
|
#define IRC_CONFIG_SERVER_DEFAULT_AUTOREJOIN 0
|
|
|
|
|
|
extern char *irc_config_server_option_string[];
|
|
extern struct t_config_file *irc_config;
|
|
|
|
extern struct t_config_option *irc_config_look_one_server_buffer;
|
|
extern struct t_config_option *irc_config_look_open_near_server;
|
|
extern struct t_config_option *irc_config_look_nick_prefix;
|
|
extern struct t_config_option *irc_config_look_nick_suffix;
|
|
extern struct t_config_option *irc_config_look_nick_completion_smart;
|
|
extern struct t_config_option *irc_config_look_display_away;
|
|
extern struct t_config_option *irc_config_look_show_away_once;
|
|
extern struct t_config_option *irc_config_look_notice_as_pv;
|
|
extern struct t_config_option *irc_config_look_highlight;
|
|
|
|
extern struct t_config_option *irc_config_network_default_msg_part;
|
|
extern struct t_config_option *irc_config_network_default_msg_quit;
|
|
extern struct t_config_option *irc_config_network_away_check;
|
|
extern struct t_config_option *irc_config_network_away_check_max_nicks;
|
|
extern struct t_config_option *irc_config_network_lag_check;
|
|
extern struct t_config_option *irc_config_network_lag_min_show;
|
|
extern struct t_config_option *irc_config_network_lag_disconnect;
|
|
extern struct t_config_option *irc_config_network_anti_flood;
|
|
extern struct t_config_option *irc_config_network_colors_receive;
|
|
extern struct t_config_option *irc_config_network_colors_send;
|
|
extern struct t_config_option *irc_config_network_send_unknown_commands;
|
|
|
|
extern struct t_config_option *irc_config_log_auto_log_server;
|
|
extern struct t_config_option *irc_config_log_auto_log_channel;
|
|
extern struct t_config_option *irc_config_log_auto_log_private;
|
|
extern struct t_config_option *irc_config_log_hide_nickserv_pwd;
|
|
|
|
extern struct t_config_option *irc_config_server_default[];
|
|
|
|
extern int irc_config_init ();
|
|
extern int irc_config_read ();
|
|
extern int irc_config_write ();
|
|
|
|
#endif /* irc-config.h */
|