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.2 required=3.0 tests=ALL_TRUSTED,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 A60C51F601 for ; Fri, 16 Dec 2022 14:39:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1671201573; bh=cZkAdZMJcrJre89EzHNcTfxEJqW/SF35jEqrQlr/Jbk=; h=From:To:Subject:Date:From; b=5BcZW2tQ+g9XesTc6OVmra3fNs9IF3iD8NCgsA5lmIOYsonAAOsqiwQeliJNgCG9Z nGCpIUPAHoS5wCJG3M1GASkh/aAiG/fd6WS3W0PtI+hTV2NVDACIo67ZFH62r2DObT EVYpTrOpoWpp7pcm/bdc0j2Myv3p+CrJYIPKNKcg= From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH 0/3] fleshing out some things... Date: Fri, 16 Dec 2022 14:39:30 +0000 Message-Id: <20221216143933.22430-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Eric Wong (3): support changing bt_req_depth dynamically support symlink install various documentation updates .gitignore | 1 + INSTALL | 44 ++++++++++++++++++++ MANIFEST | 2 + Makefile.PL | 12 ++++++ Mwrap.xs | 16 ++++++++ README | 10 ++--- exe.sh | 8 ++++ httpd.h | 99 ++++++++++++++++++++++++++++++++++++++------- mwrap_core.h | 11 ++--- script/mwrap-perl | 78 +++++++++++++++++++++++++++++++++++ script/mwrap-rproxy | 84 +++++++++++++++++++++++++++++++++++--- t/httpd.t | 4 ++ t/mwrap.t | 8 ++++ 13 files changed, 347 insertions(+), 30 deletions(-) create mode 100644 INSTALL create mode 100755 exe.sh