From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 40FE01F852 for ; Wed, 21 Dec 2022 11:34:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1671622445; bh=+fCfzwyIHiC7C1KVQ86HyAfvrJFGIBE9LrsrtuQLlHI=; h=From:To:Subject:Date:From; b=SMKEvvR/mR292qsn6zvc0RaHWsFHmOzaZq0EaiOCf8hYIDh/YP9JVFFap4scHtZYy fNRmDTBwK1RiQkN9bbYWVID88vv2wF9nHWm1m9int8pfSd3Uf8Ex1H7nF6A660TDQp QPBu60R4x5m7bjGpPgIzXUxc2/eK412XW/Y80DvM= From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH 0/3] httpd: debloating and refining Date: Wed, 21 Dec 2022 11:34:02 +0000 Message-Id: <20221221113405.2129-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Too much of the initial design was based on dedicated, high-performance HTTP servers, which mwrap-httpd isn't. So try to save some icache and binary space by trimming unneeded, overkill features. Eric Wong (3): httpd: drop connection if 404 on POST bodies httpd: drop persistent connection support httpd: do not waste TSD space httpd.h | 78 +++++++++++++++++++++++-------------------------------- t/httpd.t | 4 +++ 2 files changed, 36 insertions(+), 46 deletions(-)