aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-05-21 20:44:03 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2019-05-21 22:22:22 +0300
commitedfdbbf794837190729f1bc9c87e6cfbe26717d9 (patch)
treed02bda8fd2e6af9a0402f2ea7a17d23a3834cc1c /src/include
parentd5d03f11610c6c05591cafbeb4b5722e1efbffb8 (diff)
downloadlibmicrohttpd-edfdbbf794837190729f1bc9c87e6cfbe26717d9.tar.gz
libmicrohttpd-edfdbbf794837190729f1bc9c87e6cfbe26717d9.zip
Fixed doxygen comments,
Fixed spelling in comments
Diffstat (limited to 'src/include')
-rw-r--r--src/include/microhttpd.h9
-rw-r--r--src/include/microhttpd2.h4
2 files changed, 6 insertions, 7 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index a492071a..117062e8 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1187,9 +1187,9 @@ typedef void
1187 * @param cls closure 1187 * @param cls closure
1188 * @param connection the HTTPS connection 1188 * @param connection the HTTPS connection
1189 * @param username the user name claimed by the other side 1189 * @param username the user name claimed by the other side
1190 * @param psk[out] to be set to the pre-shared-key; should be allocated with malloc(), 1190 * @param[out] psk to be set to the pre-shared-key; should be allocated with malloc(),
1191 * will be freed by MHD 1191 * will be freed by MHD
1192 * @param psk_size[out] to be set to the number of bytes in @a psk 1192 * @param[out] psk_size to be set to the number of bytes in @a psk
1193 * @return 0 on success, -1 on errors 1193 * @return 0 on success, -1 on errors
1194 */ 1194 */
1195typedef int 1195typedef int
@@ -2654,7 +2654,6 @@ MHD_lookup_connection_value (struct MHD_Connection *connection,
2654 * @param[out] value_size_ptr the pointer variable, which will set to found value, 2654 * @param[out] value_size_ptr the pointer variable, which will set to found value,
2655 * will not be updated if key not found, 2655 * will not be updated if key not found,
2656 * could be NULL 2656 * could be NULL
2657 * @param key_size the length of @a key in bytes
2658 * @return #MHD_YES if key is found, 2657 * @return #MHD_YES if key is found,
2659 * #MHD_NO otherwise. 2658 * #MHD_NO otherwise.
2660 * @ingroup request 2659 * @ingroup request
@@ -2664,8 +2663,8 @@ MHD_lookup_connection_value_n (struct MHD_Connection *connection,
2664 enum MHD_ValueKind kind, 2663 enum MHD_ValueKind kind,
2665 const char *key, 2664 const char *key,
2666 size_t key_size, 2665 size_t key_size,
2667 const char **value, 2666 const char **value_ptr,
2668 size_t *value_size); 2667 size_t *value_size_ptr);
2669 2668
2670 2669
2671/** 2670/**
diff --git a/src/include/microhttpd2.h b/src/include/microhttpd2.h
index 54120570..710115d1 100644
--- a/src/include/microhttpd2.h
+++ b/src/include/microhttpd2.h
@@ -2187,9 +2187,9 @@ MHD_daemon_tls_mem_dhparams (struct MHD_Daemon *daemon,
2187 * @param cls closure 2187 * @param cls closure
2188 * @param connection the HTTPS connection 2188 * @param connection the HTTPS connection
2189 * @param username the user name claimed by the other side 2189 * @param username the user name claimed by the other side
2190 * @param psk[out] to be set to the pre-shared-key; should be allocated with malloc(), 2190 * @param[out] psk to be set to the pre-shared-key; should be allocated with malloc(),
2191 * will be freed by MHD 2191 * will be freed by MHD
2192 * @param psk_size[out] to be set to the number of bytes in @a psk 2192 * @param[out] psk_size to be set to the number of bytes in @a psk
2193 * @return 0 on success, -1 on errors 2193 * @return 0 on success, -1 on errors
2194 */ 2194 */
2195typedef int 2195typedef int