aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/sha256.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-09-27 22:12:13 +0200
committerChristian Grothoff <christian@grothoff.org>2020-09-27 22:12:13 +0200
commitbeb7fa828c59c31d4a5178b82121435f2069b181 (patch)
treef5279645b6805e9e33aa1b2edb34df1e2e5c26af /src/microhttpd/sha256.h
parent1d9f940dca89a5ee95a3247e43440ebd16c903af (diff)
downloadlibmicrohttpd-beb7fa828c59c31d4a5178b82121435f2069b181.tar.gz
libmicrohttpd-beb7fa828c59c31d4a5178b82121435f2069b181.zip
fix transmission stall issue with upgraded TLS connections reported by Nguyen Xuan Viet on the mailinglist
Diffstat (limited to 'src/microhttpd/sha256.h')
-rw-r--r--src/microhttpd/sha256.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/sha256.h b/src/microhttpd/sha256.h
index f4c84e2c..4a90c233 100644
--- a/src/microhttpd/sha256.h
+++ b/src/microhttpd/sha256.h
@@ -55,7 +55,7 @@ struct sha256_ctx
55{ 55{
56 uint32_t H[_SHA256_DIGEST_LENGTH]; /**< Intermediate hash value / digest at end of calculation */ 56 uint32_t H[_SHA256_DIGEST_LENGTH]; /**< Intermediate hash value / digest at end of calculation */
57 uint64_t count; /**< number of bytes, mod 2^64 */ 57 uint64_t count; /**< number of bytes, mod 2^64 */
58 uint8_t buffer[SHA256_BLOCK_SIZE]; /**< SHA256 input data buffer */ 58 uint8_t buffer[SHA256_BLOCK_SIZE]; /**< SHA256 input data buffer */
59}; 59};
60 60
61/** 61/**