aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-10 13:33:34 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-10 13:45:36 +0300
commitc930fe1ae351b63502580491c4b02e8a2fdef0f8 (patch)
treeefcdbd40b966d5537b9aa24cb64c923d1e9e3908 /src/testcurl/https
parent95e6662960f243c9731df4891a9585650a7d5e47 (diff)
downloadlibmicrohttpd-c930fe1ae351b63502580491c4b02e8a2fdef0f8.tar.gz
libmicrohttpd-c930fe1ae351b63502580491c4b02e8a2fdef0f8.zip
testcurl/https: updated copyright year in modified files, fixed some doxy
Diffstat (limited to 'src/testcurl/https')
-rw-r--r--src/testcurl/https/test_empty_response.c2
-rw-r--r--src/testcurl/https/test_https_get.c2
-rw-r--r--src/testcurl/https/test_https_get_iovec.c2
-rw-r--r--src/testcurl/https/test_https_get_parallel.c5
-rw-r--r--src/testcurl/https/test_https_get_parallel_threads.c7
-rw-r--r--src/testcurl/https/test_https_get_select.c4
-rw-r--r--src/testcurl/https/test_https_multi_daemon.c4
-rw-r--r--src/testcurl/https/test_https_session_info.c2
-rw-r--r--src/testcurl/https/test_https_sni.c2
-rw-r--r--src/testcurl/https/test_https_time_out.c4
-rw-r--r--src/testcurl/https/test_tls_authentication.c6
-rw-r--r--src/testcurl/https/test_tls_options.c2
-rw-r--r--src/testcurl/https/tls_test_common.c1
-rw-r--r--src/testcurl/https/tls_test_common.h1
-rw-r--r--src/testcurl/https/tls_test_keys.h1
15 files changed, 33 insertions, 12 deletions
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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2013 Christian Grothoff 3 Copyright (C) 2013 Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -22,6 +23,7 @@
22 * @file test_empty_response.c 23 * @file test_empty_response.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations with empty reply 24 * @brief Testcase for libmicrohttpd HTTPS GET operations with empty reply
24 * @author Christian Grothoff 25 * @author Christian Grothoff
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26#include "platform.h" 28#include "platform.h"
27#include "microhttpd.h" 29#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2016-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -22,6 +23,7 @@
22 * @file test_https_get.c 23 * @file test_https_get.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations 24 * @brief Testcase for libmicrohttpd HTTPS GET operations
24 * @author Sagie Amir 25 * @author Sagie Amir
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26 28
27#include "platform.h" 29#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007-2021 Christian Grothoff 3 Copyright (C) 2007-2021 Christian Grothoff
4 Copyright (C) 2016-2021 Evgeny Grin 4 Copyright (C) 2016-2022 Evgeny Grin
5 5
6 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published 7 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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -20,9 +21,11 @@
20 21
21/** 22/**
22 * @file test_https_get_parallel.c 23 * @file test_https_get_parallel.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations 24 * @brief Testcase for libmicrohttpd HTTPS GET operations with single-threaded
25 * MHD daemon and several clients working in parallel
24 * @author Sagie Amir 26 * @author Sagie Amir
25 * @author Christian Grothoff 27 * @author Christian Grothoff
28 * @author Karlson2k (Evgeny Grin)
26 */ 29 */
27 30
28#include "platform.h" 31#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -19,10 +20,12 @@
19*/ 20*/
20 21
21/** 22/**
22 * @file tls_thread_mode_test.c 23 * @file test_https_get_parallel_threads.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations 24 * @brief Testcase for libmicrohttpd HTTPS GET operations with multi-threaded
25 * MHD daemon and several clients working in parallel
24 * @author Sagie Amir 26 * @author Sagie Amir
25 * @author Christian Grothoff 27 * @author Christian Grothoff
28 * @author Karlson2k (Evgeny Grin)
26 * 29 *
27 * TODO: add test for external select! 30 * TODO: add test for external select!
28 */ 31 */
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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -20,8 +21,9 @@
20 21
21/** 22/**
22 * @file test_https_get_select.c 23 * @file test_https_get_select.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations 24 * @brief Testcase for libmicrohttpd HTTPS GET operations using external select
24 * @author Sagie Amir 25 * @author Sagie Amir
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26 28
27#include "platform.h" 29#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2016-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -19,9 +20,10 @@
19 */ 20 */
20 21
21/** 22/**
22 * @file mhds_multi_daemon_test.c 23 * @file test_https_multi_daemon.c
23 * @brief Testcase for libmicrohttpd multiple HTTPS daemon scenario 24 * @brief Testcase for libmicrohttpd multiple HTTPS daemon scenario
24 * @author Sagie Amir 25 * @author Sagie Amir
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26 28
27#include "platform.h" 29#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 @@
20 */ 20 */
21 21
22/** 22/**
23 * @file mhds_session_info_test.c 23 * @file test_https_session_info.c
24 * @brief Testcase for libmicrohttpd HTTPS connection querying operations 24 * @brief Testcase for libmicrohttpd HTTPS connection querying operations
25 * @author Sagie Amir 25 * @author Sagie Amir
26 * @author Karlson2k (Evgeny Grin) 26 * @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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2013, 2016 Christian Grothoff 3 Copyright (C) 2013, 2016 Christian Grothoff
4 Copyright (C) 2016-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -22,6 +23,7 @@
22 * @file test_https_sni.c 23 * @file test_https_sni.c
23 * @brief Testcase for libmicrohttpd HTTPS with SNI operations 24 * @brief Testcase for libmicrohttpd HTTPS with SNI operations
24 * @author Christian Grothoff 25 * @author Christian Grothoff
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26#include "platform.h" 28#include "platform.h"
27#include "microhttpd.h" 29#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2014-2021 Karlson2k (Evgeny Grin) 4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
5 5
6 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -21,7 +21,7 @@
21 21
22/** 22/**
23 * @file test_https_time_out.c 23 * @file test_https_time_out.c
24 * @brief: daemon TLS alert response test-case 24 * @brief: daemon TLS timeout test
25 * 25 *
26 * @author Sagie Amir 26 * @author Sagie Amir
27 * @author Karlson2k (Evgeny Grin) 27 * @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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2016-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
@@ -19,9 +20,10 @@
19 */ 20 */
20 21
21/** 22/**
22 * @file tls_authentication_test.c 23 * @file test_tls_authentication.c
23 * @brief Testcase for libmicrohttpd HTTPS GET operations 24 * @brief Testcase for libmicrohttpd HTTPS GET operations with CA-signed TLS server certificate
24 * @author Sagie Amir 25 * @author Sagie Amir
26 * @author Karlson2k (Evgeny Grin)
25 */ 27 */
26 28
27#include "platform.h" 29#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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007, 2016 Christian Grothoff 3 Copyright (C) 2007, 2016 Christian Grothoff
4 Copyright (C) 2016-2022 Evgeny Grin (Karlson2k) 4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k)
5 5
6 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published 7 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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2017-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007 Christian Grothoff 3 Copyright (C) 2007 Christian Grothoff
4 Copyright (C) 2017-2022 Evgeny Grin (Karlson2k)
4 5
5 libmicrohttpd is free software; you can redistribute it and/or modify 6 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 7 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 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2006, 2007, 2008 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2006, 2007, 2008 Christian Grothoff (and other contributing authors)
4 Copyright (C) 2021-2022 Evgeny Grin (Karlson2k)
4 5
5 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public