From 85b36c2640a4be7f575d6345ecfc2bf33261e991 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 18 Jun 2024 17:36:00 -0400 Subject: [PATCH] feat: Omit the version number from headers and HTML responses --- src/html-error.c | 8 ++++---- src/reqs.c | 11 +++++------ src/stats.c | 10 +++++----- src/utils.c | 2 +- tests/scripts/webclient.pl | 3 +-- tests/scripts/webserver.pl | 3 +-- 6 files changed, 17 insertions(+), 20 deletions(-) diff --git a/src/html-error.c b/src/html-error.c index ccafc59..5dec919 100644 --- a/src/html-error.c +++ b/src/html-error.c @@ -140,14 +140,14 @@ int send_http_headers ( { const char headers[] = "HTTP/1.%u %d %s\r\n" - "Server: %s/%s\r\n" + "Server: %s\r\n" "Content-Type: text/html\r\n" "%s" "Connection: close\r\n" "\r\n"; return (write_message (connptr->client_fd, headers, connptr->protocol.major != 1 ? 0 : connptr->protocol.minor, - code, message, PACKAGE, VERSION, + code, message, PACKAGE, extra)); } @@ -169,7 +169,7 @@ int send_http_error_message (struct conn_s *connptr) "
%s
\n" "Generated by %s version %s.
\n" "