From 2c4bb864aa69ff3c48350db30785dc2245278db6 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 21 Jan 2021 11:25:39 +0100 Subject: [PATCH] Rearrange members of struct reusable_connection ... to save 4 bytes of padding on amd64. --- project.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/project.h b/project.h index 191fe355..3f6f588d 100644 --- a/project.h +++ b/project.h @@ -764,13 +764,14 @@ struct reusable_connection char *host; int port; enum forwarder_type forwarder_type; - char *gateway_host; + char *forward_host; + int forward_port; + int gateway_port; + char *gateway_host; char *auth_username; char *auth_password; - char *forward_host; - int forward_port; }; -- 2.39.2