diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-13 18:51:44 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-13 18:51:44 +0100 |
commit | 7d34812f1cd091b70395808381469c6c1f5c659a (patch) | |
tree | 8dd82177eaad95dc216bf1b68926b8398440a198 /src/plugins/irc/irc-sasl.c | |
parent | 9db5682186de96b1deeb48e76887df7c74e77036 (diff) | |
download | weechat-7d34812f1cd091b70395808381469c6c1f5c659a.zip |
core: reformat comments for functions
Diffstat (limited to 'src/plugins/irc/irc-sasl.c')
-rw-r--r-- | src/plugins/irc/irc-sasl.c | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/plugins/irc/irc-sasl.c b/src/plugins/irc/irc-sasl.c index 7e5057ade..fe38e16ab 100644 --- a/src/plugins/irc/irc-sasl.c +++ b/src/plugins/irc/irc-sasl.c @@ -38,9 +38,9 @@ char *irc_sasl_mechanism_string[IRC_NUM_SASL_MECHANISMS] = /* - * irc_sasl_mechanism_plain: build answer for SASL authentication, using - * mechanism "PLAIN" - * Note: result must be freed after use + * Builds answer for SASL authentication, using mechanism "PLAIN". + * + * Note: result must be freed after use. */ char * @@ -71,16 +71,15 @@ irc_sasl_mechanism_plain (const char *sasl_username, const char *sasl_password) } /* - * irc_sasl_mechanism_dh_blowfish: build answer for SASL authentication, using - * mechanism "DH-BLOWFISH" - * Note: result must be freed after use + * Builds answer for SASL authentication, using mechanism "DH-BLOWFISH". + * + * Argument data_base64 is a concatenation of 3 strings, each string is composed + * of 2 bytes (length of string), followed by content of string: + * 1. a prime number + * 2. a generator number + * 3. server-generated public key * - * data_base64 is a concatenation of 3 strings, - * each string is composed of 2 bytes (length - * of string), followed by content of string: - * 1. a prime number - * 2. a generator number - * 3. server-generated public key + * Note: result must be freed after use. */ char * |