[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd2] 01/12: Added missing includes for "mhd_assert.h", sorte
From: |
Admin |
Subject: |
[libmicrohttpd2] 01/12: Added missing includes for "mhd_assert.h", sorted some includes |
Date: |
Fri, 06 Jun 2025 16:01:09 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd2.
commit 5917d37919d8067618e450aef292ece377040bdc
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
AuthorDate: Mon Jun 2 20:29:56 2025 +0200
Added missing includes for "mhd_assert.h", sorted some includes
---
src/mhd2/conn_get_info.c | 1 +
src/mhd2/daemon_add_conn.c | 5 +++--
src/mhd2/daemon_get_info.c | 1 +
src/mhd2/daemon_start.c | 6 +++---
src/mhd2/dcc_action.c | 2 ++
src/mhd2/response_funcs.c | 1 +
6 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/src/mhd2/conn_get_info.c b/src/mhd2/conn_get_info.c
index b1887f8..a1eb3f1 100644
--- a/src/mhd2/conn_get_info.c
+++ b/src/mhd2/conn_get_info.c
@@ -26,6 +26,7 @@
#include "mhd_sys_options.h"
+#include "mhd_assert.h"
#include "mhd_unreachable.h"
#include "mhd_connection.h"
diff --git a/src/mhd2/daemon_add_conn.c b/src/mhd2/daemon_add_conn.c
index 556640a..76b8529 100644
--- a/src/mhd2/daemon_add_conn.c
+++ b/src/mhd2/daemon_add_conn.c
@@ -35,8 +35,7 @@
#include "mhd_sys_options.h"
-#include "daemon_add_conn.h"
-
+#include "mhd_assert.h"
#include "sys_bool_type.h"
#include "sys_base_types.h"
#include "sys_sockets_types.h"
@@ -77,6 +76,8 @@
#include "mhd_public_api.h"
+#include "daemon_add_conn.h"
+
/**
* Set initial internal states for the connection to start reading and
diff --git a/src/mhd2/daemon_get_info.c b/src/mhd2/daemon_get_info.c
index b9e682e..bfd79ab 100644
--- a/src/mhd2/daemon_get_info.c
+++ b/src/mhd2/daemon_get_info.c
@@ -26,6 +26,7 @@
#include "mhd_sys_options.h"
+#include "mhd_assert.h"
#include "mhd_unreachable.h"
#include "sys_base_types.h"
diff --git a/src/mhd2/daemon_start.c b/src/mhd2/daemon_start.c
index cf64c99..1a93e46 100644
--- a/src/mhd2/daemon_start.c
+++ b/src/mhd2/daemon_start.c
@@ -26,6 +26,9 @@
#include "mhd_sys_options.h"
+#include "mhd_assert.h"
+#include "mhd_unreachable.h"
+
#include "sys_bool_type.h"
#include "sys_base_types.h"
#include "sys_malloc.h"
@@ -72,9 +75,6 @@
#include "mhd_daemon.h"
#include "daemon_options.h"
-#include "mhd_assert.h"
-#include "mhd_unreachable.h"
-
#include "mhd_sockets_funcs.h"
#include "mhd_lib_init.h"
diff --git a/src/mhd2/dcc_action.c b/src/mhd2/dcc_action.c
index 6c786ed..34a3115 100644
--- a/src/mhd2/dcc_action.c
+++ b/src/mhd2/dcc_action.c
@@ -26,6 +26,8 @@
#include "mhd_sys_options.h"
+#include "mhd_assert.h"
+
#include <string.h>
#include "mhd_dcc_action.h"
diff --git a/src/mhd2/response_funcs.c b/src/mhd2/response_funcs.c
index 150f2b3..b15ee98 100644
--- a/src/mhd2/response_funcs.c
+++ b/src/mhd2/response_funcs.c
@@ -28,6 +28,7 @@
#include "sys_malloc.h"
+#include "mhd_assert.h"
#include "sys_null_macro.h"
#include "mhd_response.h"
#include "response_funcs.h"
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd2] branch master updated (2e6777f -> cdd4c1f), Admin, 2025/06/06
- [libmicrohttpd2] 03/12: mhd_response_check_frozen_freeze(): fixed assert, Admin, 2025/06/06
- [libmicrohttpd2] 01/12: Added missing includes for "mhd_assert.h", sorted some includes,
Admin <=
- [libmicrohttpd2] 04/12: Improved error reporting for the listen socket creation, Admin, 2025/06/06
- [libmicrohttpd2] 06/12: mhd_stream_finish_req_serving(): minor simplification, Admin, 2025/06/06
- [libmicrohttpd2] 05/12: perf_replies: muted compiler warning, Admin, 2025/06/06
- [libmicrohttpd2] 02/12: Unified debug macro checks, Admin, 2025/06/06
- [libmicrohttpd2] 09/12: Added detection and used "externally_visible" function attribute, Admin, 2025/06/06
- [libmicrohttpd2] 07/12: mhd_atomic_counter: fixed formatting, fixed single thread version build, Admin, 2025/06/06
- [libmicrohttpd2] 08/12: configure: improved test for alignof() detection, Admin, 2025/06/06
- [libmicrohttpd2] 10/12: Implemented and used counters based on atomic variables, Admin, 2025/06/06
- [libmicrohttpd2] 12/12: get_all_net_updates_by_epoll(): reduced the size of the data passed to the kernel, Admin, 2025/06/06
- [libmicrohttpd2] 11/12: Made zeroing of memory pool optional, other memory pool improvements, Admin, 2025/06/06