diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-12-04 17:36:09 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-12-04 17:36:09 +0100 |
commit | 7e5acaf50f25dd097e8225b0df6c4731c8730a63 (patch) | |
tree | b625584236ec23fcd11c4f37a845f41243d64859 /src/plugins/weechat-plugin.h | |
parent | da6b882ed82b9e902df5649c326ecfa7ddae4d84 (diff) | |
download | weechat-7e5acaf50f25dd097e8225b0df6c4731c8730a63.zip |
Give GnuTLS return code to callback if handshake has failed, display extra info in irc plugin if Diffie-Hellman prime sent by the server is not acceptable (not long enough)
Diffstat (limited to 'src/plugins/weechat-plugin.h')
-rw-r--r-- | src/plugins/weechat-plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index 9a3e79c0a..b4b4a7a4d 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -34,7 +34,7 @@ struct t_weelist; struct timeval; /* API version (used to check that plugin has same API and can be loaded) */ -#define WEECHAT_PLUGIN_API_VERSION "20091107-01" +#define WEECHAT_PLUGIN_API_VERSION "20091204-01" /* macros for defining plugin infos */ #define WEECHAT_PLUGIN_NAME(__name) \ @@ -401,6 +401,7 @@ struct t_weechat_plugin const char *local_hostname, int (*callback)(void *data, int status, + int gnutls_rc, const char *error, const char *ip_address), void *callback_data); |