From ac155df309ccc8632074200164f00b767fc56db7 Mon Sep 17 00:00:00 2001 From: goldpandas Date: Mon, 30 Oct 2023 12:10:53 +0100 Subject: [PATCH] Update scoreboard.h Update vhost to char 64 to display longer domain names in the status page. --- include/scoreboard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/scoreboard.h b/include/scoreboard.h index 7cf92e405a4..0df60a32ab7 100644 --- a/include/scoreboard.h +++ b/include/scoreboard.h @@ -114,7 +114,7 @@ struct worker_score { #endif char client[32]; /* DEPRECATED: Keep 'em small... */ char request[64]; /* We just want an idea... */ - char vhost[32]; /* What virtual host is being accessed? */ + char vhost[64]; /* What virtual host is being accessed? */ char protocol[16]; /* What protocol is used on the connection? */ char client64[64]; apr_time_t duration;