diff options
author | Elizabeth Myers <elizabeth@interlinked.me> | 2013-05-01 09:59:39 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-05-01 09:59:39 +0200 |
commit | e0098845957d5e03eac505145c10b5313a8d760e (patch) | |
tree | 25c79c0a676e337ed113c19829b97c2de0a16222 /src/plugins/irc/irc-config.c | |
parent | 2479f427f7bd1e8925aba1d6a6c5cbb2a11be388 (diff) | |
download | weechat-e0098845957d5e03eac505145c10b5313a8d760e.zip |
irc: add support of "dh-aes" SASL mechanism (patch #8020)
Diffstat (limited to 'src/plugins/irc/irc-config.c')
-rw-r--r-- | src/plugins/irc/irc-config.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 604a591da..a96f95682 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -1577,9 +1577,10 @@ irc_config_server_new_option (struct t_config_file *config_file, config_file, section, option_name, "integer", N_("mechanism for SASL authentication: \"plain\" for plain text " - "password, \"dh-blowfish\" for crypted password, \"external\" " + "password, \"dh-blowfish\" for blowfish crypted password, " + "\"dh-aes\" for AES crypted password, \"external\" " "for authentication using client side SSL cert"), - "plain|dh-blowfish|external", 0, 0, + "plain|dh-blowfish|dh-aes|external", 0, 0, default_value, value, null_value_allowed, callback_check_value, callback_check_value_data, |