diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-28 12:29:56 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-04-28 12:29:56 +0200 |
commit | f393d0a3d263c7357946513b106e7ab5765fcd75 (patch) | |
tree | 020d4e9de84d9295437a43794a5d0197675bc714 /src/plugins/irc/irc-config.h | |
parent | f4f90e85fb668ddb22b5148d356a25d689bdfd08 (diff) | |
download | weechat-f393d0a3d263c7357946513b106e7ab5765fcd75.zip |
irc: add option "ssl_priorities" in servers (task #10106, debian #624055)
Diffstat (limited to 'src/plugins/irc/irc-config.h')
-rw-r--r-- | src/plugins/irc/irc-config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plugins/irc/irc-config.h b/src/plugins/irc/irc-config.h index ae01d5931..912f1de6b 100644 --- a/src/plugins/irc/irc-config.h +++ b/src/plugins/irc/irc-config.h @@ -154,6 +154,9 @@ extern struct t_hashtable *irc_config_hashtable_nick_color_force; extern struct t_hashtable *irc_config_hashtable_nick_prefixes; extern void irc_config_set_nick_colors (); +extern int irc_config_server_check_value_cb (void *data, + struct t_config_option *option, + const char *value); extern void irc_config_server_change_cb (void *data, struct t_config_option *option); struct t_config_option *irc_config_server_new_option (struct t_config_file *config_file, @@ -163,6 +166,8 @@ struct t_config_option *irc_config_server_new_option (struct t_config_file *conf const char *default_value, const char *value, int null_value_allowed, + void *callback_check_value, + void *callback_check_value_data, void *callback_change, void *callback_change_data); extern int irc_config_init (); |