aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-01-31 23:28:40 +0100
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2024-01-31 23:28:40 +0100
commitf9461e528c5fbe1aa92d342564327c97fde88592 (patch)
treefb65d9b2dda0d4f13d0343bc68c3e0f2c8ce943f /src/microhttpd
parentbd8eb3f218120fc90bed1d647aba5f4613f55320 (diff)
downloadlibmicrohttpd-f9461e528c5fbe1aa92d342564327c97fde88592.tar.gz
libmicrohttpd-f9461e528c5fbe1aa92d342564327c97fde88592.zip
Updated copyright years
Diffstat (limited to 'src/microhttpd')
-rw-r--r--src/microhttpd/basicauth.c2
-rw-r--r--src/microhttpd/connection.c2
-rw-r--r--src/microhttpd/connection.h1
-rw-r--r--src/microhttpd/connection_https.c2
-rw-r--r--src/microhttpd/daemon.c6
-rw-r--r--src/microhttpd/digestauth.c2
-rw-r--r--src/microhttpd/gen_auth.c2
-rw-r--r--src/microhttpd/internal.c2
-rw-r--r--src/microhttpd/internal.h3
-rw-r--r--src/microhttpd/md5.c2
-rw-r--r--src/microhttpd/md5_ext.c2
-rw-r--r--src/microhttpd/md5_ext.h2
-rw-r--r--src/microhttpd/memorypool.c4
-rw-r--r--src/microhttpd/memorypool.h4
-rw-r--r--src/microhttpd/mhd_align.h2
-rw-r--r--src/microhttpd/mhd_assert.h2
-rw-r--r--src/microhttpd/mhd_bithelpers.h8
-rw-r--r--src/microhttpd/mhd_byteorder.h2
-rw-r--r--src/microhttpd/mhd_compat.h2
-rw-r--r--src/microhttpd/mhd_itc.h2
-rw-r--r--src/microhttpd/mhd_itc_types.h2
-rw-r--r--src/microhttpd/mhd_limits.h2
-rw-r--r--src/microhttpd/mhd_locks.h2
-rw-r--r--src/microhttpd/mhd_mono_clock.c2
-rw-r--r--src/microhttpd/mhd_mono_clock.h2
-rw-r--r--src/microhttpd/mhd_send.c2
-rw-r--r--src/microhttpd/mhd_send.h2
-rw-r--r--src/microhttpd/mhd_sockets.c2
-rw-r--r--src/microhttpd/mhd_sockets.h2
-rw-r--r--src/microhttpd/mhd_str.c2
-rw-r--r--src/microhttpd/mhd_str.h2
-rw-r--r--src/microhttpd/mhd_threads.c2
-rw-r--r--src/microhttpd/mhd_threads.h2
-rw-r--r--src/microhttpd/postprocessor.c3
-rw-r--r--src/microhttpd/reason_phrase.c3
-rw-r--r--src/microhttpd/response.c2
-rw-r--r--src/microhttpd/sha1.c2
-rw-r--r--src/microhttpd/sha256.c2
-rw-r--r--src/microhttpd/sha256_ext.c2
-rw-r--r--src/microhttpd/sha512_256.c2
-rw-r--r--src/microhttpd/sysfdsetsize.c2
-rw-r--r--src/microhttpd/sysfdsetsize.h2
-rw-r--r--src/microhttpd/test_auth_parse.c2
-rw-r--r--src/microhttpd/test_client_put_stop.c2
44 files changed, 55 insertions, 49 deletions
diff --git a/src/microhttpd/basicauth.c b/src/microhttpd/basicauth.c
index 78ce2c8e..64bc79fe 100644
--- a/src/microhttpd/basicauth.c
+++ b/src/microhttpd/basicauth.c
@@ -1,7 +1,7 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2010, 2011, 2012 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2010, 2011, 2012 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) 4 Copyright (C) 2014-2023 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index d0a06061..2bb37f7f 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.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-2020 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007-2020 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2023 Evgeny Grin (Karlson2k) 4 Copyright (C) 2015-2024 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/connection.h b/src/microhttpd/connection.h
index 67a251a8..090ed065 100644
--- a/src/microhttpd/connection.h
+++ b/src/microhttpd/connection.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 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2023 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
diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c
index 5421d5b2..cecb57f1 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.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, 2008, 2010 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007, 2008, 2010 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2021 Karlson2k (Evgeny Grin) 4 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 567ec933..3acca120 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.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-2018 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007-2018 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2023 Evgeny Grin (Karlson2k) 4 Copyright (C) 2015-2024 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
@@ -6607,10 +6607,10 @@ parse_options_va (struct MHD_Daemon *daemon,
6607#ifdef HTTPS_SUPPORT 6607#ifdef HTTPS_SUPPORT
6608 const char *pstr; 6608 const char *pstr;
6609#if GNUTLS_VERSION_MAJOR >= 3 6609#if GNUTLS_VERSION_MAJOR >= 3
6610 gnutls_certificate_retrieve_function2 *pgcrf; 6610 gnutls_certificate_retrieve_function2 * pgcrf;
6611#endif 6611#endif
6612#if GNUTLS_VERSION_NUMBER >= 0x030603 6612#if GNUTLS_VERSION_NUMBER >= 0x030603
6613 gnutls_certificate_retrieve_function3 *pgcrf2; 6613 gnutls_certificate_retrieve_function3 * pgcrf2;
6614#endif 6614#endif
6615#endif /* HTTPS_SUPPORT */ 6615#endif /* HTTPS_SUPPORT */
6616 6616
diff --git a/src/microhttpd/digestauth.c b/src/microhttpd/digestauth.c
index 99e9872e..277f98b1 100644
--- a/src/microhttpd/digestauth.c
+++ b/src/microhttpd/digestauth.c
@@ -1,7 +1,7 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2010, 2011, 2012, 2015, 2018 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2010, 2011, 2012, 2015, 2018 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2014-2023 Evgeny Grin (Karlson2k) 4 Copyright (C) 2014-2024 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/gen_auth.c b/src/microhttpd/gen_auth.c
index 0a81b167..54775dd0 100644
--- a/src/microhttpd/gen_auth.c
+++ b/src/microhttpd/gen_auth.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2023 Evgeny Grin (Karlson2k)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/internal.c b/src/microhttpd/internal.c
index d7d470e8..580c7d6f 100644
--- a/src/microhttpd/internal.c
+++ b/src/microhttpd/internal.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 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2021 Evgeny Grin (Karlson2k) 4 Copyright (C) 2015-2023 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 6a2a22df..8948d397 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -1,7 +1,7 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007-2018 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007-2018 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2014-2022 Evgeny Grin (Karlson2k) 4 Copyright (C) 2014-2023 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
@@ -2921,6 +2921,7 @@ MHD_get_master (struct MHD_Daemon *const daemon)
2921 */ 2921 */
2922void 2922void
2923MHD_upgraded_connection_mark_app_closed_ (struct MHD_Connection *connection); 2923MHD_upgraded_connection_mark_app_closed_ (struct MHD_Connection *connection);
2924
2924#endif /* UPGRADE_SUPPORT */ 2925#endif /* UPGRADE_SUPPORT */
2925 2926
2926 2927
diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
index 911fc364..ee183541 100644
--- a/src/microhttpd/md5.c
+++ b/src/microhttpd/md5.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNU libmicrohttpd 2 This file is part of GNU libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2023 Evgeny Grin (Karlson2k)
4 4
5 GNU libmicrohttpd is free software; you can redistribute it and/or 5 GNU libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/md5_ext.c b/src/microhttpd/md5_ext.c
index 02cc53c9..8ab69c17 100644
--- a/src/microhttpd/md5_ext.c
+++ b/src/microhttpd/md5_ext.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNU libmicrohttpd 2 This file is part of GNU libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2023 Evgeny Grin (Karlson2k)
4 4
5 GNU libmicrohttpd is free software; you can redistribute it and/or 5 GNU libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/md5_ext.h b/src/microhttpd/md5_ext.h
index 9d7c40c7..27ae1751 100644
--- a/src/microhttpd/md5_ext.h
+++ b/src/microhttpd/md5_ext.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNU libmicrohttpd 2 This file is part of GNU libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2024 Evgeny Grin (Karlson2k)
4 4
5 GNU libmicrohttpd is free software; you can redistribute it and/or 5 GNU libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/memorypool.c b/src/microhttpd/memorypool.c
index c4a9cd5b..810251eb 100644
--- a/src/microhttpd/memorypool.c
+++ b/src/microhttpd/memorypool.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 Daniel Pittman, Christian Grothoff, and 3 Copyright (C) 2007--2024 Daniel Pittman and Christian Grothoff
4 Karlson2k (Evgeny Grin) 4 Copyright (C) 2014--2024 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/memorypool.h b/src/microhttpd/memorypool.h
index a9af78a9..b7b9e932 100644
--- a/src/microhttpd/memorypool.h
+++ b/src/microhttpd/memorypool.h
@@ -1,7 +1,7 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2007--2019 Daniel Pittman, Christian Grothoff and 3 Copyright (C) 2007--2024 Daniel Pittman and Christian Grothoff
4 Karlson2k (Evgeny Grin) 4 Copyright (C) 2016--2024 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_align.h b/src/microhttpd/mhd_align.h
index 46fcb0b0..37052373 100644
--- a/src/microhttpd/mhd_align.h
+++ b/src/microhttpd/mhd_align.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2021 Karlson2k (Evgeny Grin) 3 Copyright (C) 2021-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_assert.h b/src/microhttpd/mhd_assert.h
index b24ce93d..64b290bf 100644
--- a/src/microhttpd/mhd_assert.h
+++ b/src/microhttpd/mhd_assert.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2017-2021 Karlson2k (Evgeny Grin) 3 Copyright (C) 2017-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_bithelpers.h b/src/microhttpd/mhd_bithelpers.h
index 8c2e7eca..9b72226e 100644
--- a/src/microhttpd/mhd_bithelpers.h
+++ b/src/microhttpd/mhd_bithelpers.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2019-2021 Karlson2k (Evgeny Grin) 3 Copyright (C) 2019-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
@@ -58,7 +58,8 @@ MHD_DATA_TRUNCATION_RUNTIME_CHECK_DISABLE_
58#endif /* ! __clang__ */ 58#endif /* ! __clang__ */
59#define _MHD_BYTES_SWAP32(value32) \ 59#define _MHD_BYTES_SWAP32(value32) \
60 ((uint32_t) _byteswap_ulong ((uint32_t) value32)) 60 ((uint32_t) _byteswap_ulong ((uint32_t) value32))
61#elif __has_builtin (__builtin_bswap32) 61#elif \
62 __has_builtin (__builtin_bswap32)
62#define _MHD_BYTES_SWAP32(value32) \ 63#define _MHD_BYTES_SWAP32(value32) \
63 ((uint32_t) __builtin_bswap32 ((uint32_t) value32)) 64 ((uint32_t) __builtin_bswap32 ((uint32_t) value32))
64#else /* ! __has_builtin(__builtin_bswap32) */ 65#else /* ! __has_builtin(__builtin_bswap32) */
@@ -80,7 +81,8 @@ MHD_DATA_TRUNCATION_RUNTIME_CHECK_DISABLE_
80#endif /* ! __clang__ */ 81#endif /* ! __clang__ */
81#define _MHD_BYTES_SWAP64(value64) \ 82#define _MHD_BYTES_SWAP64(value64) \
82 ((uint64_t) _byteswap_uint64 ((uint64_t) value64)) 83 ((uint64_t) _byteswap_uint64 ((uint64_t) value64))
83#elif __has_builtin (__builtin_bswap64) 84#elif \
85 __has_builtin (__builtin_bswap64)
84#define _MHD_BYTES_SWAP64(value64) \ 86#define _MHD_BYTES_SWAP64(value64) \
85 ((uint64_t) __builtin_bswap64 ((uint64_t) value64)) 87 ((uint64_t) __builtin_bswap64 ((uint64_t) value64))
86#else /* ! __has_builtin(__builtin_bswap64) */ 88#else /* ! __has_builtin(__builtin_bswap64) */
diff --git a/src/microhttpd/mhd_byteorder.h b/src/microhttpd/mhd_byteorder.h
index 4ef095de..ffde12af 100644
--- a/src/microhttpd/mhd_byteorder.h
+++ b/src/microhttpd/mhd_byteorder.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_compat.h b/src/microhttpd/mhd_compat.h
index 37b9744d..36c1e64b 100644
--- a/src/microhttpd/mhd_compat.h
+++ b/src/microhttpd/mhd_compat.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2014-2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2014-2021 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_itc.h b/src/microhttpd/mhd_itc.h
index 55f82664..9d609d5d 100644
--- a/src/microhttpd/mhd_itc.h
+++ b/src/microhttpd/mhd_itc.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2016-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_itc_types.h b/src/microhttpd/mhd_itc_types.h
index 04d30239..60e7e260 100644
--- a/src/microhttpd/mhd_itc_types.h
+++ b/src/microhttpd/mhd_itc_types.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2016 Karlson2k (Evgeny Grin), Christian Grothoff 3 Copyright (C) 2016-2020 Karlson2k (Evgeny Grin), Christian Grothoff
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_limits.h b/src/microhttpd/mhd_limits.h
index b61da5f4..84551a4a 100644
--- a/src/microhttpd/mhd_limits.h
+++ b/src/microhttpd/mhd_limits.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_locks.h b/src/microhttpd/mhd_locks.h
index ad9fa20e..2e86490c 100644
--- a/src/microhttpd/mhd_locks.h
+++ b/src/microhttpd/mhd_locks.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2016-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_mono_clock.c b/src/microhttpd/mhd_mono_clock.c
index e6f8267c..117c5c13 100644
--- a/src/microhttpd/mhd_mono_clock.c
+++ b/src/microhttpd/mhd_mono_clock.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_mono_clock.h b/src/microhttpd/mhd_mono_clock.h
index f7a3d4a8..9ac58d79 100644
--- a/src/microhttpd/mhd_mono_clock.h
+++ b/src/microhttpd/mhd_mono_clock.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2021 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index eea1c2d5..db9e30fd 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2017,2020 Karlson2k (Evgeny Grin), Full re-write of buffering and 3 Copyright (C) 2017-2023 Karlson2k (Evgeny Grin), Full re-write of buffering and
4 pushing, many bugs fixes, optimisations, sendfile() porting 4 pushing, many bugs fixes, optimisations, sendfile() porting
5 Copyright (C) 2019 ng0 <ng0@n0.is>, Initial version of send() wrappers 5 Copyright (C) 2019 ng0 <ng0@n0.is>, Initial version of send() wrappers
6 6
diff --git a/src/microhttpd/mhd_send.h b/src/microhttpd/mhd_send.h
index 1b2ad6a3..c7a078ad 100644
--- a/src/microhttpd/mhd_send.h
+++ b/src/microhttpd/mhd_send.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2017, 2020 Karlson2k (Evgeny Grin) 3 Copyright (C) 2017-2021 Karlson2k (Evgeny Grin)
4 Copyright (C) 2019 ng0 4 Copyright (C) 2019 ng0
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
diff --git a/src/microhttpd/mhd_sockets.c b/src/microhttpd/mhd_sockets.c
index f6da7452..31c2885e 100644
--- a/src/microhttpd/mhd_sockets.c
+++ b/src/microhttpd/mhd_sockets.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2014-2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2014-2024 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_sockets.h b/src/microhttpd/mhd_sockets.h
index 02e3ebec..0626712f 100644
--- a/src/microhttpd/mhd_sockets.h
+++ b/src/microhttpd/mhd_sockets.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2014-2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2014-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
index 29c8f3f9..88933258 100644
--- a/src/microhttpd/mhd_str.c
+++ b/src/microhttpd/mhd_str.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015-2023 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2024 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_str.h b/src/microhttpd/mhd_str.h
index f7a4f79f..08872036 100644
--- a/src/microhttpd/mhd_str.h
+++ b/src/microhttpd/mhd_str.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015-2022 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_threads.c b/src/microhttpd/mhd_threads.c
index 057bf376..189704c0 100644
--- a/src/microhttpd/mhd_threads.c
+++ b/src/microhttpd/mhd_threads.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2016-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/mhd_threads.h b/src/microhttpd/mhd_threads.h
index 9d9b19dd..c0bf3f13 100644
--- a/src/microhttpd/mhd_threads.h
+++ b/src/microhttpd/mhd_threads.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2016 Karlson2k (Evgeny Grin) 3 Copyright (C) 2016-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/postprocessor.c b/src/microhttpd/postprocessor.c
index c00605c7..5f258a6b 100644
--- a/src/microhttpd/postprocessor.c
+++ b/src/microhttpd/postprocessor.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-2021 Daniel Pittman, Christian Grothoff, and Evgeny Grin 3 Copyright (C) 2007-2021 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2014-2022 Karlson2k (Evgeny Grin)
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
diff --git a/src/microhttpd/reason_phrase.c b/src/microhttpd/reason_phrase.c
index 669c1015..4b95a4e9 100644
--- a/src/microhttpd/reason_phrase.c
+++ b/src/microhttpd/reason_phrase.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, 2011, 2017, 2019 Christian Grothoff, Karlson2k (Evgeny Grin) 3 Copyright (C) 2007, 2011, 2017, 2019 Christian Grothoff
4 Copyright (C) 2017-2023 Karlson2k (Evgeny Grin)
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
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index fb9352dc..ed1326ab 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.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 Daniel Pittman and Christian Grothoff 3 Copyright (C) 2007-2021 Daniel Pittman and Christian Grothoff
4 Copyright (C) 2015-2022 Evgeny Grin (Karlson2k) 4 Copyright (C) 2015-2023 Evgeny Grin (Karlson2k)
5 5
6 This library is free software; you can redistribute it and/or 6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public 7 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sha1.c b/src/microhttpd/sha1.c
index be9f73ab..4d20a860 100644
--- a/src/microhttpd/sha1.c
+++ b/src/microhttpd/sha1.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2019-2021 Karlson2k (Evgeny Grin) 3 Copyright (C) 2019-2022 Karlson2k (Evgeny Grin)
4 4
5 libmicrohttpd is free software; you can redistribute it and/or 5 libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sha256.c b/src/microhttpd/sha256.c
index 917bb22b..073fa546 100644
--- a/src/microhttpd/sha256.c
+++ b/src/microhttpd/sha256.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2019-2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2019-2023 Evgeny Grin (Karlson2k)
4 4
5 libmicrohttpd is free software; you can redistribute it and/or 5 libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sha256_ext.c b/src/microhttpd/sha256_ext.c
index bcbe53a3..19543f98 100644
--- a/src/microhttpd/sha256_ext.c
+++ b/src/microhttpd/sha256_ext.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNU libmicrohttpd 2 This file is part of GNU libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2023 Evgeny Grin (Karlson2k)
4 4
5 GNU libmicrohttpd is free software; you can redistribute it and/or 5 GNU libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sha512_256.c b/src/microhttpd/sha512_256.c
index 1e00e5d9..1eb6c061 100644
--- a/src/microhttpd/sha512_256.c
+++ b/src/microhttpd/sha512_256.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNU libmicrohttpd 2 This file is part of GNU libmicrohttpd
3 Copyright (C) 2022 Evgeny Grin (Karlson2k) 3 Copyright (C) 2022-2023 Evgeny Grin (Karlson2k)
4 4
5 GNU libmicrohttpd is free software; you can redistribute it and/or 5 GNU libmicrohttpd is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sysfdsetsize.c b/src/microhttpd/sysfdsetsize.c
index 2ca634e8..1f0ba66e 100644
--- a/src/microhttpd/sysfdsetsize.c
+++ b/src/microhttpd/sysfdsetsize.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/sysfdsetsize.h b/src/microhttpd/sysfdsetsize.h
index ff77e726..644e0709 100644
--- a/src/microhttpd/sysfdsetsize.h
+++ b/src/microhttpd/sysfdsetsize.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2015 Karlson2k (Evgeny Grin) 3 Copyright (C) 2015-2023 Karlson2k (Evgeny Grin)
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
diff --git a/src/microhttpd/test_auth_parse.c b/src/microhttpd/test_auth_parse.c
index 27fc84a0..5c40e024 100644
--- a/src/microhttpd/test_auth_parse.c
+++ b/src/microhttpd/test_auth_parse.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2022 Karlson2k (Evgeny Grin) 3 Copyright (C) 2022-2023 Karlson2k (Evgeny Grin)
4 4
5 This test tool is free software; you can redistribute it and/or 5 This test tool is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as 6 modify it under the terms of the GNU General Public License as
diff --git a/src/microhttpd/test_client_put_stop.c b/src/microhttpd/test_client_put_stop.c
index 3a6c1865..97f72f1e 100644
--- a/src/microhttpd/test_client_put_stop.c
+++ b/src/microhttpd/test_client_put_stop.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 Copyright (C) 2021 Evgeny Grin (Karlson2k) 3 Copyright (C) 2021-2024 Evgeny Grin (Karlson2k)
4 4
5 libmicrohttpd is free software; you can redistribute it and/or modify 5 libmicrohttpd is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published