aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/digestauth.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-18 09:49:30 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-18 11:18:03 +0300
commit1c116801200b0cafac4f16f7f9ccecf69a23c1aa (patch)
tree70cc66b2bd8be41598ca9d9e4bd771b57dd6e797 /src/microhttpd/digestauth.c
parent4ff1024763a306200de3fd1e5581377aca9047e1 (diff)
downloadlibmicrohttpd-1c116801200b0cafac4f16f7f9ccecf69a23c1aa.tar.gz
libmicrohttpd-1c116801200b0cafac4f16f7f9ccecf69a23c1aa.zip
Added _MHD_EXTERN to the all public functions definitions
Previously it was inconsistent, some function definitions used _MHD_EXTERN, while other definitions was used without _MHD_EXTERN.
Diffstat (limited to 'src/microhttpd/digestauth.c')
-rw-r--r--src/microhttpd/digestauth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 8526ae40..8b9abd18 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -614,7 +614,7 @@ check_nonce_nc (struct MHD_Connection *connection,
614 * @warning Returned value must be freed by #MHD_free(). 614 * @warning Returned value must be freed by #MHD_free().
615 * @ingroup authentication 615 * @ingroup authentication
616 */ 616 */
617char * 617_MHD_EXTERN char *
618MHD_digest_auth_get_username (struct MHD_Connection *connection) 618MHD_digest_auth_get_username (struct MHD_Connection *connection)
619{ 619{
620 char user[MAX_USERNAME_LENGTH]; 620 char user[MAX_USERNAME_LENGTH];
@@ -1342,7 +1342,7 @@ MHD_digest_auth_check_digest (struct MHD_Connection *connection,
1342 * @note Available since #MHD_VERSION 0x00096200 1342 * @note Available since #MHD_VERSION 0x00096200
1343 * @ingroup authentication 1343 * @ingroup authentication
1344 */ 1344 */
1345enum MHD_Result 1345_MHD_EXTERN enum MHD_Result
1346MHD_queue_auth_fail_response2 (struct MHD_Connection *connection, 1346MHD_queue_auth_fail_response2 (struct MHD_Connection *connection,
1347 const char *realm, 1347 const char *realm,
1348 const char *opaque, 1348 const char *opaque,
@@ -1470,7 +1470,7 @@ MHD_queue_auth_fail_response2 (struct MHD_Connection *connection,
1470 * @ingroup authentication 1470 * @ingroup authentication
1471 * @deprecated use MHD_queue_auth_fail_response2() 1471 * @deprecated use MHD_queue_auth_fail_response2()
1472 */ 1472 */
1473enum MHD_Result 1473_MHD_EXTERN enum MHD_Result
1474MHD_queue_auth_fail_response (struct MHD_Connection *connection, 1474MHD_queue_auth_fail_response (struct MHD_Connection *connection,
1475 const char *realm, 1475 const char *realm,
1476 const char *opaque, 1476 const char *opaque,