From 66b1e23830d60ea98b0ba2ac5644ef24a45f9c55 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 21 Jan 2021 11:20:12 +0100 Subject: [PATCH] Reorder need_bind in struct configuration_spec to save memory --- project.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project.h b/project.h index 98caadde..eeed8bc4 100644 --- a/project.h +++ b/project.h @@ -1435,6 +1435,9 @@ struct configuration_spec /** Bitmask of features that can be controlled through the config file. */ unsigned feature_flags; + /** Nonzero if we need to bind() to the new port. */ + int need_bind; + /** The log file name. */ const char *logfile; @@ -1566,9 +1569,6 @@ struct configuration_spec /** List of loaders */ int (*loaders[NLOADERS])(struct client_state *); - /** Nonzero if we need to bind() to the new port. */ - int need_bind; - #ifdef FEATURE_HTTPS_INSPECTION /** Password for proxy ca file **/ char * ca_password; -- 2.39.2