From patchwork Sun Apr 5 12:03:52 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9604 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4fpWNl4kY0z3xNb for ; Sun, 05 Apr 2026 12:04:55 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E7" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4fpWNl2FMlz3M3 for ; Sun, 05 Apr 2026 12:04:55 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4fpWN25W1Nz36Zs for ; Sun, 05 Apr 2026 12:04:18 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4fpWMv671Fz37DN for ; Sun, 05 Apr 2026 12:04:11 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4fpWMt1cwJz6VJ; Sun, 05 Apr 2026 12:04:10 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1775390650; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dgkyL1XAXSkFVSIyj70YkmSXVZUVKgZE4Fla+MQgn3E=; b=C8ijFnEl/adVNgNRdouKjvjoZA2F6GuBPMNiFcmDo3XIuekX82c/0tOrBBSR4gu1GajMFZ eZzwCUOBenye4dBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1775390650; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dgkyL1XAXSkFVSIyj70YkmSXVZUVKgZE4Fla+MQgn3E=; b=aApy7e3dtE15nUOHqGgUOoaKwgToF7atAokKGCUnqffRcF7hrp6ebeCHiwZuVFvVFMWIvO Wa6SnRuhb0AlBy3vdd7JrC9UBQuMulL+8BVlty892+JVVgxZumc0zBoBHkw4gC6ahIJs8g GFeL2RFUSSiVp+JJpVfL0q0USGeWjV2LC+bbuDclZjGGh06kDUYbaMwSKIhRNqE7Ir8XO2 tF6+xK/lKJimcsxHeOyUbl1iJ4U9hoxMHeHgegx0RQKezEbM9DiKme75POuliYapZp8604 s26hbiGFoayr8i7+o/vvh9BeuOiYaSD4aEkgcg55hgafO7E3O91F4JZQNY3p0A== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] libmicrohttpd: Update to version 1.0.3 Date: Sun, 5 Apr 2026 14:03:52 +0200 Message-ID: <20260405120354.137211-35-adolf.belka@ipfire.org> In-Reply-To: <20260405120354.137211-1-adolf.belka@ipfire.org> References: <20260405120354.137211-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - Update from version 1.0.2 to 1.0.3 - Update of rootfile - Changelog 1.0.3 This is a bugfix release. It primarily fixes a list traversal issue that could cause connection handling issues when other connections were suspended. Signed-off-by: Adolf Belka --- config/rootfiles/packages/libmicrohttpd | 2 +- lfs/libmicrohttpd | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/rootfiles/packages/libmicrohttpd b/config/rootfiles/packages/libmicrohttpd index 6864f054e..b78560c7b 100644 --- a/config/rootfiles/packages/libmicrohttpd +++ b/config/rootfiles/packages/libmicrohttpd @@ -2,5 +2,5 @@ #usr/lib/libmicrohttpd.la #usr/lib/libmicrohttpd.so usr/lib/libmicrohttpd.so.12 -usr/lib/libmicrohttpd.so.12.62.2 +usr/lib/libmicrohttpd.so.12.62.3 #usr/lib/pkgconfig/libmicrohttpd.pc diff --git a/lfs/libmicrohttpd b/lfs/libmicrohttpd index 8aac72cd0..1cfc60fc7 100644 --- a/lfs/libmicrohttpd +++ b/lfs/libmicrohttpd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2025-2025 IPFire Team # +# Copyright (C) 2025-2026 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -26,7 +26,7 @@ include Config SUMMARY = Small C library to easily run an HTTP server as part of an application -VER = 1.0.2 +VER = 1.0.3 THISAPP = libmicrohttpd-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = libmicrohttpd -PAK_VER = 1 +PAK_VER = 2 DEPS = @@ -48,7 +48,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = fc9562cb6064d928f311ad0afd1930d46902f31ce3fb11811cbeb7ec7ef2591693855f6e167732b8743a525b6684f68ffdbeb67ad3b2b2f11dc0296f77aa2d64 +$(DL_FILE)_BLAKE2 = a739b5b954b94644e586e0323d6da5e6313eefb87a9f85230ed776a92176bae6393f0bf2fd2a45070989b0b193b63017f9c9e76b8409fb5632e4d1f6c6e6b8b1 install : $(TARGET)