diff --git a/src/testcurl/https/test_empty_response.c b/src/testcurl/https/test_empty_response.c index 0b7b7f3d..b1de3501 100644 --- a/src/testcurl/https/test_empty_response.c +++ b/src/testcurl/https/test_empty_response.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2013 Christian Grothoff + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -22,6 +23,7 @@ * @file test_empty_response.c * @brief Testcase for libmicrohttpd HTTPS GET operations with empty reply * @author Christian Grothoff + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" #include "microhttpd.h" diff --git a/src/testcurl/https/test_https_get.c b/src/testcurl/https/test_https_get.c index 13865502..b18fc878 100644 --- a/src/testcurl/https/test_https_get.c +++ b/src/testcurl/https/test_https_get.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -22,6 +23,7 @@ * @file test_https_get.c * @brief Testcase for libmicrohttpd HTTPS GET operations * @author Sagie Amir + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" diff --git a/src/testcurl/https/test_https_get_iovec.c b/src/testcurl/https/test_https_get_iovec.c index d4e5821e..0df4bf65 100644 --- a/src/testcurl/https/test_https_get_iovec.c +++ b/src/testcurl/https/test_https_get_iovec.c @@ -1,7 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007-2021 Christian Grothoff - Copyright (C) 2016-2021 Evgeny Grin + Copyright (C) 2016-2022 Evgeny Grin libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/src/testcurl/https/test_https_get_parallel.c b/src/testcurl/https/test_https_get_parallel.c index 5bd1256c..3d7db915 100644 --- a/src/testcurl/https/test_https_get_parallel.c +++ b/src/testcurl/https/test_https_get_parallel.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -20,9 +21,11 @@ /** * @file test_https_get_parallel.c - * @brief Testcase for libmicrohttpd HTTPS GET operations + * @brief Testcase for libmicrohttpd HTTPS GET operations with single-threaded + * MHD daemon and several clients working in parallel * @author Sagie Amir * @author Christian Grothoff + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" diff --git a/src/testcurl/https/test_https_get_parallel_threads.c b/src/testcurl/https/test_https_get_parallel_threads.c index 14a5be4e..6e639f45 100644 --- a/src/testcurl/https/test_https_get_parallel_threads.c +++ b/src/testcurl/https/test_https_get_parallel_threads.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -19,10 +20,12 @@ */ /** - * @file tls_thread_mode_test.c - * @brief Testcase for libmicrohttpd HTTPS GET operations + * @file test_https_get_parallel_threads.c + * @brief Testcase for libmicrohttpd HTTPS GET operations with multi-threaded + * MHD daemon and several clients working in parallel * @author Sagie Amir * @author Christian Grothoff + * @author Karlson2k (Evgeny Grin) * * TODO: add test for external select! */ diff --git a/src/testcurl/https/test_https_get_select.c b/src/testcurl/https/test_https_get_select.c index a1f79f77..1939ccff 100644 --- a/src/testcurl/https/test_https_get_select.c +++ b/src/testcurl/https/test_https_get_select.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -20,8 +21,9 @@ /** * @file test_https_get_select.c - * @brief Testcase for libmicrohttpd HTTPS GET operations + * @brief Testcase for libmicrohttpd HTTPS GET operations using external select * @author Sagie Amir + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" diff --git a/src/testcurl/https/test_https_multi_daemon.c b/src/testcurl/https/test_https_multi_daemon.c index 050c9e19..8ffef656 100644 --- a/src/testcurl/https/test_https_multi_daemon.c +++ b/src/testcurl/https/test_https_multi_daemon.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -19,9 +20,10 @@ */ /** - * @file mhds_multi_daemon_test.c + * @file test_https_multi_daemon.c * @brief Testcase for libmicrohttpd multiple HTTPS daemon scenario * @author Sagie Amir + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" diff --git a/src/testcurl/https/test_https_session_info.c b/src/testcurl/https/test_https_session_info.c index 040b4458..bad47b1c 100644 --- a/src/testcurl/https/test_https_session_info.c +++ b/src/testcurl/https/test_https_session_info.c @@ -20,7 +20,7 @@ */ /** - * @file mhds_session_info_test.c + * @file test_https_session_info.c * @brief Testcase for libmicrohttpd HTTPS connection querying operations * @author Sagie Amir * @author Karlson2k (Evgeny Grin) diff --git a/src/testcurl/https/test_https_sni.c b/src/testcurl/https/test_https_sni.c index 5059998e..573bf637 100644 --- a/src/testcurl/https/test_https_sni.c +++ b/src/testcurl/https/test_https_sni.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2013, 2016 Christian Grothoff + Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -22,6 +23,7 @@ * @file test_https_sni.c * @brief Testcase for libmicrohttpd HTTPS with SNI operations * @author Christian Grothoff + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" #include "microhttpd.h" diff --git a/src/testcurl/https/test_https_time_out.c b/src/testcurl/https/test_https_time_out.c index 9818417a..24159fcd 100644 --- a/src/testcurl/https/test_https_time_out.c +++ b/src/testcurl/https/test_https_time_out.c @@ -1,7 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff - Copyright (C) 2014-2021 Karlson2k (Evgeny Grin) + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -21,7 +21,7 @@ /** * @file test_https_time_out.c - * @brief: daemon TLS alert response test-case + * @brief: daemon TLS timeout test * * @author Sagie Amir * @author Karlson2k (Evgeny Grin) diff --git a/src/testcurl/https/test_tls_authentication.c b/src/testcurl/https/test_tls_authentication.c index b488193f..51c87c0e 100644 --- a/src/testcurl/https/test_tls_authentication.c +++ b/src/testcurl/https/test_tls_authentication.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -19,9 +20,10 @@ */ /** - * @file tls_authentication_test.c - * @brief Testcase for libmicrohttpd HTTPS GET operations + * @file test_tls_authentication.c + * @brief Testcase for libmicrohttpd HTTPS GET operations with CA-signed TLS server certificate * @author Sagie Amir + * @author Karlson2k (Evgeny Grin) */ #include "platform.h" diff --git a/src/testcurl/https/test_tls_options.c b/src/testcurl/https/test_tls_options.c index 0f4a5cce..dfd7aad4 100644 --- a/src/testcurl/https/test_tls_options.c +++ b/src/testcurl/https/test_tls_options.c @@ -1,7 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007, 2016 Christian Grothoff - Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) + Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/src/testcurl/https/tls_test_common.c b/src/testcurl/https/tls_test_common.c index 6d7daa02..98d62482 100644 --- a/src/testcurl/https/tls_test_common.c +++ b/src/testcurl/https/tls_test_common.c @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2017-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/src/testcurl/https/tls_test_common.h b/src/testcurl/https/tls_test_common.h index 074f5345..dc4be451 100644 --- a/src/testcurl/https/tls_test_common.h +++ b/src/testcurl/https/tls_test_common.h @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2007 Christian Grothoff + Copyright (C) 2017-2022 Evgeny Grin (Karlson2k) libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published diff --git a/src/testcurl/https/tls_test_keys.h b/src/testcurl/https/tls_test_keys.h index 86ea0a76..ccb7a338 100644 --- a/src/testcurl/https/tls_test_keys.h +++ b/src/testcurl/https/tls_test_keys.h @@ -1,6 +1,7 @@ /* This file is part of libmicrohttpd Copyright (C) 2006, 2007, 2008 Christian Grothoff (and other contributing authors) + Copyright (C) 2021-2022 Evgeny Grin (Karlson2k) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public