diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2017-11-30 11:15:47 +0100 |
---|---|---|
committer | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2017-11-30 11:15:47 +0100 |
commit | b332d448f7e3c7e4b40ea4a08932d0bd46007bbf (patch) | |
tree | 81073b51a77215402cc6fb1df0d4afe91eda4c1a /src/irc | |
parent | b2ca8c04778866bd07cf1b612adf0df55f45b78e (diff) | |
download | irssi-b332d448f7e3c7e4b40ea4a08932d0bd46007bbf.zip |
fix comments
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/core/sasl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/core/sasl.c b/src/irc/core/sasl.c index 635b7dfb..2b589579 100644 --- a/src/irc/core/sasl.c +++ b/src/irc/core/sasl.c @@ -30,16 +30,16 @@ * Based on IRCv3 SASL Extension Specification: * http://ircv3.net/specs/extensions/sasl-3.1.html */ -#define AUTHENTICATE_CHUNK_SIZE 400 // bytes +#define AUTHENTICATE_CHUNK_SIZE 400 /* bytes */ /* * Maximum size to allow the buffer to grow to before the next fragment comes in. Note that * due to the way fragmentation works, the maximum message size will actually be: * floor(AUTHENTICATE_MAX_SIZE / AUTHENTICATE_CHUNK_SIZE) + AUTHENTICATE_CHUNK_SIZE - 1 */ -#define AUTHENTICATE_MAX_SIZE 8192 // bytes +#define AUTHENTICATE_MAX_SIZE 8192 /* bytes */ -#define SASL_TIMEOUT (20 * 1000) // ms +#define SASL_TIMEOUT (20 * 1000) /* ms */ static gboolean sasl_timeout(IRC_SERVER_REC *server) { |