diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-05-15 20:23:00 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-05-15 20:23:00 +0200 |
commit | bd1db541f782c8ec9a5545bb9ba7f49870c43574 (patch) | |
tree | bc8ad184d593a45eaff380f1eebd4c1246d37b8c | |
parent | 3a0cf4b4dbfff5992776d0b0551f445b9b42bce9 (diff) | |
download | weechat-bd1db541f782c8ec9a5545bb9ba7f49870c43574.zip |
doc: add missing argument "gnutls_priorities" in function hook_connect
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 9 | ||||
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 10 | ||||
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 10 |
3 files changed, 29 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 98655bab6..4631c6581 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -6519,6 +6519,7 @@ struct t_hook *weechat_hook_connect (const char *proxy, void *gnutls_sess, void *gnutls_cb, int gnutls_dhkey_size, + const char *gnutls_priorities, const char *local_hostname, int (*callback)(void *data, int status, @@ -6540,6 +6541,14 @@ Arguments: * 'gnutls_cb': GnuTLS callback (optional) * 'gnutls_dhkey_size': size of the key used during the Diffie-Hellman Key Exchange (GnuTLS) +* 'gnutls_priorities': priorities for gnutls (for syntax, see documentation of + function 'gnutls_priority_init' in gnutls manual), basic values are: +** 'PERFORMANCE' +** 'NORMAL' (default) +** 'SECURE128' +** 'SECURE256' +** 'EXPORT' +** 'NONE' * 'local_hostname': local hostname to use for connection (optional) * 'callback': function called when connection is ok or failed, arguments and return value: diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 4746e42fd..83fa61591 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -6602,6 +6602,7 @@ struct t_hook *weechat_hook_connect (const char *proxy, void *gnutls_sess, void *gnutls_cb, int gnutls_dhkey_size, + const char *gnutls_priorities, const char *local_hostname, int (*callback)(void *data, int status, @@ -6623,6 +6624,15 @@ Paramètres : * 'gnutls_cb' : callback pour GnuTLS (optionnel) * 'gnutls_dhkey_size' : taille de clé utilisée pour l'échange de clé Diffie-Hellman (GnuTLS) +* 'gnutls_priorities' : priorités pour gnutls (pour la syntaxe, voir la + documentation de la fonction 'gnutls_priority_init' dans le manuel gnutls), + les valeurs de base sont : +** 'PERFORMANCE' +** 'NORMAL' (défaut) +** 'SECURE128' +** 'SECURE256' +** 'EXPORT' +** 'NONE' * 'local_hostname' : nom de machine local à utiliser pour la connexion (optionnel) * 'callback' : fonction appelée lorsque la connexion est ok ou a échoué, diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 4c06da3c6..3a1d2e078 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -6535,6 +6535,7 @@ struct t_hook *weechat_hook_connect (const char *proxy, void *gnutls_sess, void *gnutls_cb, int gnutls_dhkey_size, + const char *gnutls_priorities, const char *local_hostname, int (*callback)(void *data, int status, @@ -6556,6 +6557,15 @@ Argomenti: * 'gnutls_cb' callback GnuTLS (opzionale) * 'gnutls_dhkey_size': dimensione della chiave utilizzata nello Scambio Chiavi Diffie-Hellman (GnuTLS) +// TRANSLATION MISSING +* 'gnutls_priorities': priorities for gnutls (for syntax, see documentation of + function 'gnutls_priority_init' in gnutls manual), basic values are: +** 'PERFORMANCE' +** 'NORMAL' (default) +** 'SECURE128' +** 'SECURE256' +** 'EXPORT' +** 'NONE' * 'local_hostname': nome host locale da utilizzare per la connessione (opzionale) * 'callback': funzione chiamata quando la connessione è avvenuta con |