aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection_https.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-06-03 22:43:09 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-06-03 22:43:09 +0300
commit51b64e8beca897a78924098a34e05fa8f542dbcf (patch)
tree75e2a01e6707453aab5c64a496a7808c56d2e41e /src/microhttpd/connection_https.h
parent3516d336f1471eca64be65fe2c5d6d64e8bb2fa1 (diff)
downloadlibmicrohttpd-51b64e8beca897a78924098a34e05fa8f542dbcf.tar.gz
libmicrohttpd-51b64e8beca897a78924098a34e05fa8f542dbcf.zip
MHD_connection_mark_closed_(): changed return type to 'bool'
Diffstat (limited to 'src/microhttpd/connection_https.h')
-rw-r--r--src/microhttpd/connection_https.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/connection_https.h b/src/microhttpd/connection_https.h
index 6bb218b6..b9686870 100644
--- a/src/microhttpd/connection_https.h
+++ b/src/microhttpd/connection_https.h
@@ -43,9 +43,9 @@ MHD_set_https_callbacks (struct MHD_Connection *connection);
43 * Initiate shutdown of TLS layer of connection. 43 * Initiate shutdown of TLS layer of connection.
44 * 44 *
45 * @param connection to use 45 * @param connection to use
46 * @return #MHD_YES if succeed, #MHD_NO otherwise. 46 * @return true if succeed, false otherwise.
47 */ 47 */
48int 48bool
49MHD_tls_connection_shutdown (struct MHD_Connection *connection); 49MHD_tls_connection_shutdown (struct MHD_Connection *connection);
50#endif /* HTTPS_SUPPORT */ 50#endif /* HTTPS_SUPPORT */
51 51